2
I have this function in Python:
def v(m1,m2):
print(m1)
print(m2)
It gives an error when I do not enter one of the parameters, for example inserted m1 = [1,2,3]
and omitting m2: v([1,2,3])
Missing 1 required positional argument
How to avoid this error?