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