Day -6 learning

PERUMAL S - Jul 17 - - Dev Community

Hi today learned functions

below the picture five basic structure of function

Image description

example:1

def india_allience(con,dmk):
return con+dmk
con=10
dmk=30
india_allience(con,dmk)

result

40

example:2

def india_allience(con,dmk):
return con+dmk
con=10
dmk=30
print("40 ku",india_allience(con,dmk))

result

40 ku 40

. . . . . . . . . . . .