8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
E.g.:
>>> from gmpy2 import mpz >>> format(mpz(123), 'f') Traceback (most recent call last): File "<python-input-1>", line 1, in <module> format(mpz(123), 'f') ~~~~~~^^^^^^^^^^^^^^^ ValueError: Invalid conversion specification >>> format(int(123), 'f') '123.000000'