I try to substitue strings with variables using locals() in python but I can find a way to use the % character inside the string without error. Here is a concrete example :

color = colors_generator() #the function return a color

html = """<html><head>
<style>#square{color:%(color)s;width:100%;height:100%;}</style>    
</head>    <body>  <div id="square">  </div>
</body></html>""" % locals()

print "Content-Type: text/html\n"    
print html

Result : TypeError: not enough arguments for format string

The problem is the % character in 100%. How can I escape it?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

escape % with %

html = """<html><head>
<style>#square{color:%(color)s;width:100%%;height:100%%;}</style>    
</head>    <body>  <div id="square">  </div>
</body></html>""" % locals()
link|improve this answer
Quick and effective, it works ! Thank you – Thammas Jan 19 '11 at 20:47
feedback

Virhilo has already answered your direct question, but if you find you are building quite big/complicated templates it might be worth looking at a full blown template engine instead:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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