0
Anybody give me a Example of (def) function.PLZ
Âżâ ââ
3 RĂ©ponses
+ 1
Example: greeting
def great():
return "Hello"
print(greet(),"Arjun")
Example 2: add 2 no's
def add(a,b):
Ans=a+b
return a
x=add(2,7)
print(x)
0
Hi
0
Thnks
Âżâ ââ