Heres the program.
def print_two (*args): arg1, arg2 = args print "arg1: %s, arg2: %s" % (arg1, arg2)
def print_two_again (arg1, arg2): print "arg1: %s, arg2: %s" % (arg1, arg2)
def print_one (arg1): print "arg1: %s" % (arg1)
def print_none (): print "i got nothing"
print_two = ("First", "Second") print_two_again = ("First", "Second") print_one = ("First") print_none = ()
I dont get an error or anything just blank. Ive tried running through bash, and running the file directly via the files tab of the web page.
Any info is greatly appreciated.
Edit: youll have to assume i did all the indentations correctly. The way i typed it into the forum and the way its displayed are quite different.