示例#1
0
def println(*args):
    print "".join([ str(i) for i in args])
示例#2
0
def print_(o):
    sys.stdout.write(str(o))
    sys.stdout.flush()
示例#3
0
 def __str__(self):
     return "[%s]" % (', '.join([str(i) for i in self]))