29.09.18 11:43, Steve Barnes пише:
On 29/09/2018 08:50, Serhiy Storchaka wrote:Python is dynamically typed language. What is such processing that would work with iNaN, but doesn't work with float('nan')?One simplistic example would be print(int(float('nan'))) (gives a ValueError) while print(int(iNaN)) should give 'nan' or maybe 'inan'.
Why do you convert to int when you need a string representation? Just print(float('nan')).
_______________________________________________ Python-ideas mailing list [email protected] https://mail.python.org/mailman/listinfo/python-ideas Code of Conduct: http://python.org/psf/codeofconduct/
