[issue40201] Last digit count error

2020-04-05 Thread Talha Demirsoy
Change by Talha Demirsoy : Removed file: https://bugs.python.org/file49039/howmany0.py ___ Python tracker ___ ___ Python-bugs-list mailing

[issue40201] Last digit count error

2020-04-05 Thread Josh Rosenberg
Josh Rosenberg added the comment: Your script is using "true" division with / , (that produces potentially inaccurate float results) not floor division with // , (which gets int results). When the inputs vastly exceed the integer representational capabilities of floats (52-53 bits, where 10

[issue40201] Last digit count error

2020-04-05 Thread Talha Demirsoy
Talha Demirsoy added the comment: sorry delete pls -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40201] Last digit count error

2020-04-05 Thread Talha Demirsoy
New submission from Talha Demirsoy : When I try to enter 10^23 or less its gives me ture but when I tried 10^24 and more its give me just 1 -- files: howmany0.py messages: 365834 nosy: talha.demirsoy priority: normal severity: normal status: open title: Last digit count error type: