Predict the output:
def f1(x=2,y=3): return x+y
Answers
Answered by
0
Input Command :-
def f1(x=2, y=3): return x+y
Output :-
=> x+y
=> 2+3
=> 5
Hope it helps you!
Similar questions