On Sep 11, 2008, at 2:15 PM, Patrick wrote:
I have been able to import a string from another module threw a
dictionary but I can't seem to figure out how to do it so that I can
insert a value into the %s placeholder afterwards.
The % operator is probably what you are looking for.
format = "th
I would like to import a string with a "placeholder" in it.
for example "this is a %s"
I would then like to insert the value into it after importation, "this
is a %s" (test)
I have been able to import a string from another module threw a
dictionary but I can't seem to figure out how to do it so