On Apr 2, 10:50 pm, "erikcw" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm trying to format a string like so:
>
> string = "You have a 75% chance of success with %s, don't use %s" %(a,
> b)
>
> This gives me:
> TypeError: not enough arguments for format string
>
> I've tried 75\%, but that doesn't seem to help.  What am I missing?
>
> Thanks!
> Erik

Use %%.

>>> "%d%%" % 75
"75"


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to