About 140,000 results
Open links in new tab
  1. How can i draw a nice spiral in python with turtle?

    Jun 24, 2018 · -1 I have a homework to draw a spiral (from inside to outside) in python with turtle, but I cant think of a way to do that, beside what I did its need to be like this: I tried to do it like …

  2. Python. Learning turtle graphics - Stack Overflow

    Oct 8, 2017 · Python. Learning turtle graphics Asked 8 years, 2 months ago Modified 8 years, 2 months ago Viewed 3k times

  3. What would the most efficient way be to draw a pixel using turtle …

    Jan 14, 2022 · If I were to draw, let's say, a pixel art of Mario for example, with a lot of squares (see pixel art below), what would the most efficient way be to do this? I've tried it, but the code …

  4. Drawing a spiral in a spiral using Python turtle - Stack Overflow

    Jan 5, 2017 · What is wrong with my code for turtle angie? I want her to spiral inside brad's square circle. My Code: import turtle def draw_square(some_turtle): for i in range (1,5): …

  5. python - How to fully delete a turtle - Stack Overflow

    May 15, 2017 · The problem was that the turtle library itself still had references to the objects I was trying to delete. By "reference", I mean that Python doesn't create a duplicate object every …

  6. geometry - Python Turtle Vertical Oval - Stack Overflow

    Dec 26, 2023 · I am playing around with Python's turtle module. I want to draw a vertical oval, half of which is crossed by the y axis, when the user enters only the radius of a small arc (you can …

  7. Drawing a 3D multicolor triangle in python turtle - Stack Overflow

    Oct 24, 2021 · Drawing a 3D multicolor triangle in python turtle Asked 4 years, 2 months ago Modified 4 years, 2 months ago Viewed 2k times

  8. How can I save a Turtle canvas as an image (.png or .jpg)

    You can directly save the canvas as a .png if you include the turtle in a tkinter canvas. This is very easy to do. Grabbing the .png image can then be automated, or be done at the click of a …

  9. Drawing with turtle (python) using PyCharm - Stack Overflow

    Jun 6, 2017 · Drawing with turtle (python) using PyCharm Asked 11 years, 2 months ago Modified 2 years, 10 months ago Viewed 49k times

  10. Draw a pixel at specific x,y coordinates - Stack Overflow

    Feb 21, 2022 · I'm using Turtle Graphics, and i want to draw a pixel at specific x,y position something like : pixel = turtle.Turtle() pixel.draw(x, y) Is it possible ?