Computer Science, asked by mahaabbas2376, 8 months ago

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 akshayamca14
0

Answer:

7

9

3

Explanation:

Similar questions