keyword arguments
def birthday1(name, age):
print "Happy birthday,", name, "!", " I hear you're", age, "today.\n"
birthday1("Joe", 1)
birthday1(1, "Joe")
birthday1(name = "Joe", age = 1)
birthday1(age = 1, name = "Joe")
Related examples in the same category