fork download
  1. #import sys
  2. #import math
  3. def print_two_name(onename,twoname):
  4. print("the first name is %r, the second name is %r")%(onename, twoname)
  5. print_two_name("sss","ddd")
  6.  
  7. def print_none():
  8. print "shayemeiyou"
  9. print_none()
Success #stdin #stdout 0.02s 7080KB
stdin
Standard input is empty
stdout
the first name is 'sss', the second name is 'ddd'
shayemeiyou