[issue43289] step bug in turtle's for loop

2021-02-26 Thread Yehuda Katz
Yehuda Katz added the comment: Thank you Terry, and take care. Yehuda <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> Virus-free. www.avg.com <http://www.avg.com/email-signature?utm_medium=email&utm_sou

[issue43289] step bug in turtle's for loop

2021-02-22 Thread Yehuda Katz
Yehuda Katz added the comment: Thank you Dennis for taking the time to answer. Yehuda <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> Virus-free. www.avg.com <http://www.avg.com/email-signature?utm_medium=

[issue43289] step bug in turtle's for loop

2021-02-21 Thread Yehuda Katz
Yehuda Katz added the comment: Correction to my msg387472: Every *even* step crashes the code. -- ___ Python tracker <https://bugs.python.org/issue43

[issue43289] step bug in turtle's for loop

2021-02-21 Thread Yehuda Katz
New submission from Yehuda Katz : 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: Yeh

[issue37968] Add a turtle module function to draw a circle centered at the turtle

2019-08-30 Thread Yehuda Katz
Yehuda Katz added the comment: Eric, thank you, I'm sorry. Yehuda On Thu, Aug 29, 2019 at 11:47 PM Eric V. Smith wrote: > > Eric V. Smith added the comment: > > It's turtle.circle: > > https://docs.python.org/3.5/library/turtle.html#turtle.circle > > @

[issue37968] Add a turtle module function to draw a circle centered at the turtle

2019-08-29 Thread Yehuda Katz
Yehuda Katz added the comment: Nick, thank you. What you linked here is Logo, with different logic & syntax than Python. The hand analogy is interesting, thank you. I rest my case and have good night from Israel. Yehuda On Thu, Aug 29, 2019 at 11:40 PM Nick Timkovich wrote: >

[issue37968] Add a turtle module function to draw a circle centered at the turtle

2019-08-28 Thread Yehuda Katz
Yehuda Katz added the comment: Thanks for the clarifications. Yehuda(Israel) On Thu, Aug 29, 2019 at 3:36 AM Raymond Hettinger wrote: > > Raymond Hettinger added the comment: > > Yehuda, thank you for the suggestions, but we're going to decline. > > -- >

[issue37968] Add a turtle module function to draw a circle centered at the turtle

2019-08-28 Thread Yehuda Katz
Yehuda Katz added the comment: Thanks for the clarifications. Yehuda(Israel) On Thu, Aug 29, 2019 at 3:36 AM Raymond Hettinger wrote: > > Raymond Hettinger added the comment: > > Yehuda, thank you for the suggestions, but we're going to decline. > > -- >

[issue37968] Add a turtle module function to draw a circle centered at the turtle

2019-08-28 Thread Yehuda Katz
Yehuda Katz added the comment: G-R-E-A-T. Yehuda (Israel) On Wed, Aug 28, 2019 at 8:29 PM Mark Dickinson wrote: > > Mark Dickinson added the comment: > > Updated title, type and Python version (this would be a new feature, so > would be targeted at Python 3.9). > > --

[issue37968] Add a turtle module function to draw a circle centered at the turtle

2019-08-28 Thread Yehuda Katz
Yehuda Katz added the comment: G-R-E-A-T. Yehuda, Israel On Wed, Aug 28, 2019 at 8:29 PM Mark Dickinson wrote: > > Mark Dickinson added the comment: > > Updated title, type and Python version (this would be a new feature, so > would be targeted at Python 3.9). > > --

[issue37968] The turtle

2019-08-28 Thread Yehuda Katz
Yehuda Katz added the comment: Such a function would be welcomed. For the best of my (limited) knowledge, there's currently no arc() function in module turtle. I can't think about a proper name... Sorry. Yehuda On Wed, Aug 28, 2019 at 7:55 PM Nick Timkovich wrote: > >

[issue37968] The turtle

2019-08-28 Thread Yehuda Katz
Yehuda Katz added the comment: Hi, Sorry to say but these don't satisfy my issues. 1 the next code SHOULD produce an error message. Think that it's followed by a few dozens of code lines: from turtle import * fd; rt(90) 2 Old Logo had a useful function of creating a circle AROUND

[issue37968] The turtle

2019-08-28 Thread Yehuda Katz
Yehuda Katz added the comment: Sorry to say but these don't satisfy my issues. 1 the next code SHOULD produce an error message. Think that it's followed by a few dozens of code lines: from turtle import * fd; rt(90) 2 Old Logo had a useful function of creating a circle AROUND THE

[issue37968] The turtle

2019-08-28 Thread Yehuda Katz
New submission from Yehuda Katz : 1 - turtle bug: If I don't put parenthesis at the end of a line, I don't get error message. Try this: from turtle import * fd(50); rt done() 2 - request: Highly desirable a function that draws a circle wit