Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Python 2.6 introduced the string.format() method with a slightly different syntax from the existing % operator. Which is better and for what situations?

  1. 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 d
    
  2. Furthermore 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)
    
share|improve this question
2  
similar to stackoverflow.com/questions/3691975/… – carl Feb 22 '11 at 18:50
4  
"I still take a hit for performing the following % operation?" When you used timeit what did you learn? – S.Lott Feb 22 '11 at 19:50
4  
@S.Lott, the point is that there is is non zero work going on, if a logging statement is not printing I want zero work done for the string formatting. – NorthIsUp Feb 23 '11 at 18:58

6 Answers

up vote 105 down vote accepted

To answer your first question... .format just seems more sophisticated in many ways. You can do stuff like re-use arguments, which you can't do with %. An annoying thing about % is also how it can either take a variable or a tuple. You'd think the following would always work:

"hi there %s" % name

yet, if name happens to be (1, 2, 3), it will throw a TypeError. To guarantee that it always prints, you'd need to do

"hi there %s" % (name,)   # supply the single argument as a single-item tuple

which is just ugly. .format doesn't have those issues. Also in the second example you gave, the .format example is much cleaner looking.

Why would you not use it?

  • not knowing about it (me before reading this)
  • having to be compatible with Python 2.5

To answer your second question, string formatting happens at the same time as any other operation - when the string formatting expression is evaluated. And Python, not being a lazy language, evaluates expressions before calling functions, so in your log.debug example, the expression "some debug info: %s"%some_infowill first evaluate to, e.g. "some debug info: roflcopters are active", then that string will be passed to log.debug().

share|improve this answer
19  
what about "%(a)s, %(a)s" % {'a':'test'} – ted Aug 23 '12 at 9:53
8  
Note that you will waste time for log.debug("something: %s" % x) but not for log.debug("something: %s", x) The string formatting will be handled in the method and you won't get the performance hit if it won't be logged. As always, Python anticipates your needs =) – darkfeline Dec 14 '12 at 23:13
2  
ted: that’s a worse-looking hack to do the same as '{0}, {0}'.format('test'). – flying sheep Jan 30 at 20:43
5  
The point is: The one recurring argument that the new syntax allows reordering of items is a moot point: You can do the same with the old syntax. Most people do not know that this is actually already defined in the Ansi C99 Std! Check out a recent copy of man sprintf and learn about the $ notation inside % placeholders – cfi Feb 20 at 12:42
1  
@cfi: If you mean something like, printf("%2$d", 1, 3) to print out "3", that's specified in POSIX, not C99. The very man page you referenced notes, "The C99 standard does not include the style using '$'…". – Thanatos Mar 7 at 23:55
show 3 more comments

Something that the modulo operator ( % ) can't do, afaik:

tu = (12,45,22222,103,6)
print '{0} {2} {1} {2} {3} {2} {4} {2}'.format(*tu)

result

12 22222 45 22222 103 22222 6 22222

Very useful

.

Another point: format() being a function, it can be used as argument in other functions:

li = [12,45,78,784,2,69,1254,4785,984]
print map('the number is {}'.format,li)   

print

from datetime import datetime,timedelta

once_upon_a_time = datetime(2010, 7, 1, 12, 0, 0)
delta = timedelta(days=13, hours=8,  minutes=20)

gen =(once_upon_a_time +x*delta for x in xrange(20))

print '\n'.join(map('{:%Y-%m-%d %H:%M:%S}'.format, gen))

result

['the number is 12', 'the number is 45', 'the number is 78', 'the number is 784', 'the number is 2', 'the number is 69', 'the number is 1254', 'the number is 4785', 'the number is 984']

2010-07-01 12:00:00
2010-07-14 20:20:00
2010-07-28 04:40:00
2010-08-10 13:00:00
2010-08-23 21:20:00
2010-09-06 05:40:00
2010-09-19 14:00:00
2010-10-02 22:20:00
2010-10-16 06:40:00
2010-10-29 15:00:00
2010-11-11 23:20:00
2010-11-25 07:40:00
2010-12-08 16:00:00
2010-12-22 00:20:00
2011-01-04 08:40:00
2011-01-17 17:00:00
2011-01-31 01:20:00
2011-02-13 09:40:00
2011-02-26 18:00:00
2011-03-12 02:20:00
share|improve this answer
3  
You can use old style formatting in map just as easily as format. map('some_format_string_%s'.__mod__, some_iterable) – agf Nov 28 '12 at 5:49
This is wrong. See other answers, and have a look at the original definition for the old syntax. Most people do not know that this is actually already defined in the Ansi C99 Std! Check out a recent copy of man sprintf and learn about the $ notation inside % placeholders. So even if Python would not support this feature of the original syntax, why introduce a new syntax? Why not just extend the interpreter to be able to understand all of what's in the C99 std? – cfi Feb 20 at 12:44

Assuming you're using python's logging module, you can pass the string formatting arguments as arguments to the .debug() method rather than doing the formatting yourself:

log.debug("some debug info: %s", some_info)

which avoids doing the formatting unless the logger actually logs something.

share|improve this answer
   
Any way to get that performance advantage with dict formatting? – Brian B Oct 17 '12 at 13:52
1  
This is some useful info that I just learned now. It's a pity it doesn't have it's own question as it seems separate to the main question. Pity the OP didn't split his question in two separate questions. – snth Nov 14 '12 at 7:36
1  
You can use dict formatting like this: log.debug("some debug info: %(this)s and %(that)s", dict(this='Tom', that='Jerry')) However, you can't use the new style .format() syntax here, not even in Python 3.3, which is a shame. – Cito Nov 25 '12 at 17:00
5  
@Cito: See this: plumberjack.blogspot.co.uk/2010/10/… – Vinay Sajip Jan 30 at 19:56
@VinaySajip: Cool, thanks for the info and sorry for spreading misinformation. It's also in the "What's new in 3.2" article here: docs.python.org/3.2/whatsnew/3.2.html#logging. Very useful. – Cito Jan 30 at 21:55
show 1 more comment

Also, PEP 3101 proposes the replacement of the % operator with the new, advanced string formatting in python 3, where it would be the default.

share|improve this answer
4  
+1 for referencing the PEP – Yuri Prezument Aug 29 '12 at 8:54
1  
Untrue: "Backwards compatibility can be maintained by leaving the existing mechanisms in place."; of course, .format won't replace % string formatting. – Tobias Jan 28 at 23:32

But please be careful, just now I've discovered one issue when trying to replace all % with .format in existing code: '{}'.format(unicode_string) will try to encode unicode_string and will probably fail

Just look at this python interactive session log:

Python 2.7.2 (default, Aug 27 2012, 19:52:55) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-48)] on linux2
; s='й'
; u=u'й'
; s
'\xd0\xb9'
; u
u'\u0439'

so s is just a string (called 'byte array' in python3) and u is a unicode string (called 'string' in python3)

; '%s' % s
'\xd0\xb9'
; '%s' % u
u'\u0439'

when you give a unicode object as a parameter to % operator it will produce a unicode string even if original string wasn't unicode

; '{}'.format(s)
'\xd0\xb9'
; '{}'.format(u)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'latin-1' codec can't encode character u'\u0439' in position 0: ordinal not in range(256)

but .format function will raise UnicodeEncodeError

; u'{}'.format(s)
u'\xd0\xb9'
; u'{}'.format(u)
u'\u0439'

and it will work with unicode argument fine only if original string was a unicode

; '{}'.format(u'i')
'i'

or if argument string can be converted to a string (so called 'byte array')

share|improve this answer
2  
There is simply no reason to change working code unless the additional features of the new format method are really needed ... – Tobias Jan 28 at 22:51
absolutely agree with you, Tobias, but sometimes it's needed when upgrading to newer versions of Python – khrf Jan 30 at 13:17
1  
For instance? AFAIK, it has never been needed; I don't consider it likely that the % string interpolation would ever go away. – Tobias Jan 31 at 13:45

"%" gives much better performance than "format" from my test.

"format" runs two times slower than "%"

share|improve this answer
13  
Instead, str.format gives more functionalities (especially type-specialized formatting e.g. '{0:%Y-%m-%d}'.format(datetime.datetime.utcnow())). Performance cannot be the absolute requirement of all jobs. Use the right tool for the job. – minhee Sep 18 '11 at 17:25
6  
"Premature optimization is the root of all evil" or so Donald Knuth once said... – YatharthROCK Oct 17 '12 at 13:07
2  
Sticking with a well-known formatting scheme (as long as it suits the needs, which it does in the vast majority of cases), and which is twice as fast, is no "premature optimization" but simply reasonable. BTW, the % operator allows to reuse printf knowledge; dictionary interpolation is a very simple extension of the principle. – Tobias Jan 28 at 23:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.