You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Write a program to take input as name, email & age from user using combination of keywords argument and positional arguments (*args and**kwargs) using function,
def userdetails(*args, **kwargs):
name = args[0] if args else kwargs.get('name', 'Unknown')