Old format with %

ast none at gmail.com
Wed Feb 14 07:46:24 EST 2018


Hello

It seems that caracter % can't be escaped

 >>>"test %d %" % 7
ValueError: incomplete format

 >>>"test %d \%" % 7
ValueError: incomplete format

 >>>"test %d" % 7 + "%"
'test 7%'  # OK

But is there a way to escape a % ?

thx



More information about the Python-list mailing list