> I don't want to print the space between 'a' and 'b'. Could somebody let me > know how to do it?
>>>> print "a","b" > a b Since you are new, you should also be aware of: print "%s%s" % (a, b) -- http://mail.python.org/mailman/listinfo/python-list
> I don't want to print the space between 'a' and 'b'. Could somebody let me > know how to do it?
>>>> print "a","b" > a b Since you are new, you should also be aware of: print "%s%s" % (a, b) -- http://mail.python.org/mailman/listinfo/python-list