Functions Flashcards

1
Q

Change the function header below to use a default parameter value of “blue” if no color is specified.

def choose_car(engine, color, model):

A

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”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

If a function has multiple “return” statements, what happens once the function hits the first return statement

A

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 well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you define a variable-length argument in a function?

A

Put a “*” in front of the parameter name, e.g.,

def pizza_toppings(*ingredients):

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the correct order for defining the following function arguments:

a variable-length
b regular
c) default

A

a) regular
b) variable-length
c) default

When using both variable-length & default arguments together, the default arguement MUST be called by name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly