예제 #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]))