Functions
Functions
def hello():
print("Hello World")
hello()
Hello World
def add10(x):
return x+10
add10(10)
20
def even_odd(x):
if x%2==0:
print(x, " is even")
else:
print(x, " is odd")
even_odd(5)
5 is odd
#lambda functions
g = lambda x: x*x*x
print(g(7))
343
[10, 14, 44, 194, 108, 124, 154, 46, 146, 122]
193