Posts

Showing posts with the label string

string conversions

>>> print "Before %s After" % 7 Before 7 After >>> print "Before %x After" % 15 Before f After >>> print "Foo %04d Bar" % 3*3 Foo 0009 Bar