This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author talha.demirsoy
Recipients furkanonder, talha.demirsoy
Date 2020-04-05.23:07:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1586128062.7.0.106189303658.issue40200@roundup.psfhosted.org>
In-reply-to
Content
I shared but I write again.

sayac = 0
fakto = 10000000000000000000000
while True:
    if fakto % 10 == 0:
        sayac += 1
        fakto = fakto / 10
    elif fakto % 10 > 0:
        break
print(sayac)
History
Date User Action Args
2020-04-05 23:07:42talha.demirsoysetrecipients: + talha.demirsoy, furkanonder
2020-04-05 23:07:42talha.demirsoysetmessageid: <1586128062.7.0.106189303658.issue40200@roundup.psfhosted.org>
2020-04-05 23:07:42talha.demirsoylinkissue40200 messages
2020-04-05 23:07:42talha.demirsoycreate