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 Yehuda
Recipients Yehuda
Date 2021-02-21.21:29:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1613942999.52.0.979246620938.issue43289@roundup.psfhosted.org>
In-reply-to
Content
from turtle import *

col = ["black", "white"]

for rad in range(40, 0, -1): 
    dot(5*rad, col[rad % 2])
    
done()
======================
Any other step than -1 crashes the code.

Thank you.
History
Date User Action Args
2021-02-21 21:29:59Yehudasetrecipients: + Yehuda
2021-02-21 21:29:59Yehudasetmessageid: <1613942999.52.0.979246620938.issue43289@roundup.psfhosted.org>
2021-02-21 21:29:59Yehudalinkissue43289 messages
2021-02-21 21:29:59Yehudacreate