Module 6
Calling a function
Running a function's code.
Using a function
To run a function's code, you write its name followed by parentheses. This is called calling the function.
Python
def show_base():
print("A")
show_base()→ A
How do you call a function named hello?