New submission from Yehuda Katz <katye2...@gmail.com>:

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.

----------
messages: 387472
nosy: Yehuda
priority: normal
severity: normal
status: open
title: step bug in turtle's for loop
type: behavior
versions: Python 3.9

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue43289>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to