Define a function:
def
def stands for:
define a function
Invoke a function:
def thing( ):
print(‘Hello’)
print(‘Fun’)
thing( ) Hello
print(‘Zip’) Fun
thing( ) Zip
Hello
Fun
When a function does not return a value, we call it a?
Void
Functions that return values are:
“Fruitful” functions
Void funcations are:
“Not fruitful”