str = 'I love %s and %s, he loves %s and %s.'
I want to use this format to display
I love apple and pitch, he loves apple and pitch.
Only add two variable please, but need a way to use it twice in one sentence.
|
Use a dict:
Or use the newer
Note: Calling a variable |
||||
|
|
Of course you can use other names besides '1' and '2'. :) |
|||
|
|
str. – Chris Morgan Dec 14 '10 at 3:38