Functions Flashcards
1
Q
What are arguments?
A
Values that are passed in as inputs to a function.
2
Q
Is a variable defined in a function, global or local?
A
It is local and can not be accessed outside the function.
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.
4
Q
What is variable scope?
A
Variable scope are the parts of the program that a variable can be referenced or used from.
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.
6
Q
What is a lambda expression?
A
It is an expression used to create an anonymous function.