What will be the output of the following code: def func_default(x=1, y=2, z=3):
print(x)
print(y)
print(z)
func_default(7,9)
Answers
Answered by
0
Answer:
7
9
3
Explanation:
Similar questions