R
Q. What will be the output of this code?
Code:
def add(x, y=5):
return x + y
print(add(3))
return x + y
print(add(3))
- Correct Answer - Option(C)
- Views: 3
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.