Le 14/02/2018 à 13:46, ast a écrit :
HelloIt 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
Found, double % to escape it >>>"test %d%%" % 7 'test 7%' -- https://mail.python.org/mailman/listinfo/python-list