Functions Flashcards
1
Q
This refers to a block of organized, reusable code that is used to perform a single, related action.
A
Function
2
Q
It provides better modularity for the applications, as well as a high degree of code reusing.
A
Function
3
Q
These are functions that you can create on your own.
A
User-defined functions
4
Q
This keyword introduces a function definition.
A
def
5
Q
It is the variable listed inside the parentheses in the function definition.
A
Parameter
6
Q
These are information that can be passed into functions.
A
Arguments
7
Q
It is used to avoid getting an error for a function definition with no content.
A
Pass statement