Dennis Sweeney <sweeney.dennis...@gmail.com> added the comment:
If I understand correctly, changing the -1 to a -2 does not actually make the program "crash" -- you just only see one black circle. The reason is that range(40, 0, -2) produces 40, 38, 36, etc., all of which are even numbers, so rad % 2 is always 0, so col[rad % 2] is always "black". You could try: for index, rad in enumerate(range(40, 0, -2)): dot(5*rad, col[index % 2]) In the future, I would suggest asking questions like this on StackOverflow, since this is not a bug in Python itself. ---------- nosy: +Dennis Sweeney _______________________________________ 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