I am trying to interpolate this string correctly:
/test/test?Monetization%20Source=%d&Channel%20Id=%d' % (mid, cid)
I want the the %20 to rendered as is and the %d to serve as place-holderes for the variables mid and cid. How do I do this?
|
I am trying to interpolate this string correctly:
I want the the %20 to rendered as is and the %d to serve as place-holderes for the variables mid and cid. How do I do this? |
|||
|
|
|
In general, you want
|
|||
|
|
|
I presume this is a constant string literal? If so it's easy - just double up the percent signs you want to keep.
|
|||||||
|
|
Since Python 2.6, you can use the Format Specification Mini-Language, which is way more powerful than the old (but still supported) % operator.
Omitting the :d for integers defaults to str() Since Python 2.7 and 3.2, you can omit the parameter indexes:
But see the manual, the format() methods and built-in function are very flexible and useful. |
|||||||
|