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
# There are four types of arguments that we can provide in a function:
# • Default Arguments
# • Keyword Arguments
# • Variable length Arguments
# • Required Arguments
# Default arguments:
# We can provide a default value while creating a function. This way the function assumes a default value even if a value is not provided in the function call for that argument.
# default arguments
# def name (fname, mname="patty", lname= "watson"):