Python 2.6 introduced the string.format() method with a slightly different syntax from the existing % operator. Which is better and for what situations?
The following uses each method and has the same outcome, so what is the difference?
#!/usr/bin/python sub1 = "python string!" sub2 = "an arg" a = "i am a %s"%sub1 b = "i am a {0}".format(sub1) c = "with %(kwarg)s!"%{'kwarg':sub2} d = "with {kwarg}!".format(kwarg=sub2) print a print b print c print dFurthermore when does string formatting occur in python? for example if my logging level is set to HIGH will I still take a hit for performing the following % operation? And if so, is there a way to avoid this?
log.debug("some debug info: %s" % some_info)
timeitwhat did you learn? – S.Lott Feb 22 '11 at 19:50