fork download
  1. # your code goes here
  2. def print_two(*args):
  3. arg1, arg2 = args
  4. print "arg1: %r, arg2: %r" % (arg1, arg2)
  5.  
  6. print_two("Zed","Shaw")
Success #stdin #stdout 0.02s 7060KB
stdin
Standard input is empty
stdout
Standard output is empty