> I know the print statement produces the same result when both of these two > instructions are executed ,I just want to know Is there any difference > between print 3 and print '3' in Python ? Sure there is. The first converts the integer 3 to a string ("3"), the second just prints the given string "3". Does that make sense?
-- Colton Myers
-- http://mail.python.org/mailman/listinfo/python-list