[issue44607] Teleport method for turtle class

2021-07-12 Thread Muffinlicious
Muffinlicious added the comment: Turtle is the most accessible and well-known drawing module for kids to use so teleporting makes more sense in the context of drawing random shapes or small pictures around the screen. I've seen the penup/goto/pendown combo so often that I figure it at

[issue44607] Teleport method for turtle class

2021-07-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What other Turtle implementations support the teleport command? -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue44607] Teleport method for turtle class

2021-07-12 Thread Vedran Čačić
Vedran Čačić added the comment: In my view, turtle is a great tool for exploring _polar_ coordinates. If you set emphasis to rectangular coordinates, there are many tools that are much better. Second, your function might be ok for you, but it is really not suitable for standard library.

[issue44607] Teleport method for turtle class

2021-07-12 Thread Muffinlicious
New submission from Muffinlicious : I use turtle pretty often in a teaching setting. It's extremely common that I'll define the following function at the top of my code: def teleport(x, y): turtle.penup() turtle.setpos(x, y) turtle.pendown() Shouldn't this sort of method already