Exercise: Default parameter value
The code below throws an error. Can you think of a way fix it by adjusting only the function parameters?
# change code here:
def func(x, y):
print(x * y)
func(10)
Python
Setting up Python environment...
Output