Functions Flashcards

1
Q

What are arguments?

A

Values that are passed in as inputs to a function.

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

Is a variable defined in a function, global or local?

A

It is local and can not be accessed outside the function.

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

What is the difference between the print and return functions?

A

Print outputs text to the output window while return stores the data so it can be referenced later.

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

What is variable scope?

A

Variable scope are the parts of the program that a variable can be referenced or used from.

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

What is a docstring?

A

A type of comment used to explain the purpose of a function and how it should be used.

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

What is a lambda expression?

A

It is an expression used to create an anonymous function.

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