7) Functions
Create a function and call it.
All Topics
Run Program
Python Code
def square(n): return n * n print(square(6))
Program Input (optional)
Output