Functions Flashcards
1
Q
What is the syntax to create a basic function in Python?
A
def myFunc(n, m):
print(n, m)
2
Q
When are nested functions helpful in Python?
A
Recursive problems
3
Q
What is the advantage of using nested functions in Python?
A
Inner function has access to all properties in outer function