4.1 Functions
-
Incorrect
Correct
No Answer was selected
Invalid Answer
Vocabulary
Term | Definition |
---|---|
Indentation | Indentation is the visual structure of how your code is laid out. It uses tabs to organize code into a hierarchy. |
Function body | In Python functions, the function body is the indented block of code that comes after the `def my_function():` line. The function body is what will be executed when the function is called. |