vote up 2 vote down star

How do you make the following code work?

example = "%%(test)%" % {'test':'name',}
print example

Where the desired output is "%name%"

Thanks

flag

2 Answers

vote up 5 vote down check

An alternative is to use the new Advanced String Formatting

>>> example = "%{test}%".format(test="name")
>>> print example
%name%
link|flag
vote up 3 vote down
example = "%%%(test)s%%" % {'test':'name',}
print example

%(key)s is a placeholder for a string identified by key. %% escapes % when using the % operator.

link|flag
Ah I knew it would be simple! I tried the classic backslash to cancel special characters then got stuck. Thanks! – hotbizz Oct 27 at 10:02
1  
You omitted the helpful reference information: docs.python.org/library/…. – S.Lott Oct 27 at 10:23

Your Answer

Get an OpenID
or

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