Function Python Tutorial

def fun(name, location, year=2006):
    print "%s/%s/%d" % (name, location, year)
tuple = ("DaNae", "Paris", 2003)
fun(*tuple)