Share
All argument types
Question
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Write a function with required, default, packed, and keyworded arguments.
Answer ( 1 )
def func5(x,y,z,*args, d=20, e=21,**kwargs):
print(x)
print(y)
print(z)
print(args)
print(d)
print(e)
print(kwargs)