R
Q. What happens if you call a function before it is defined?
Code:
print(square(3))
def square(x):
return x * x
def square(x):
return x * x
- Correct Answer - Option(B)
- Views: 2
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.