Functions Flashcards
Change the function header below to use a default parameter value of “blue” if no color is specified.
def choose_car(engine, color, model):
def choose_car(engine, model, color=”blue”):
Note that parameters with default values must place at the end !
Note that when typing a default parameter value, no spaces should used, i.e., color=”blue” vs colour = “blue”
If a function has multiple “return” statements, what happens once the function hits the first return statement
It immediately exists the function and returns the specified value
Emphasis: it will EXIT IMMEDIATELY - it’ won’t run any more code, including other return statements!
How do you define a variable-length argument in a function?
Put a “*” in front of the parameter name, e.g.,
def pizza_toppings(*ingredients):
What is the correct order for defining the following function arguments:
a variable-length
b regular
c) default
a) regular
b) variable-length
c) default
When using both variable-length & default arguments together, the default arguement MUST be called by name