About 50 results
Open links in new tab
  1. 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): some_turtle.

  2. Python. Learning turtle graphics - Stack Overflow

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

  3. 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 that, but its …

  4. 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 try 120). …

  5. Newest Questions - Stack Overflow

    2 days ago · Stack Overflow | The World’s Largest Online Community for Developers

  6. What would the most efficient way be to draw a pixel using turtle in ...

    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 is very long,

  7. python - Save turtle drawing - Stack Overflow

    Jun 9, 2021 · I am making a python program where it draws a square and I want the user to be able to save the drawing when the user presses q. All it does is add the image to the ide file directory. If it …

  8. 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 time you …

  9. Drawing a pattern (with dots) using turtle in python

    Jul 29, 2024 · I am trying to make a hirst painting (dot pattern) using the turtle in python. I managed to achieve it. Hirst_painting_dot_pattern.But my for loop isn't working the way I have expected. It's omitti...

  10. How to draw a flower using Python turtle - Stack Overflow

    Apr 8, 2018 · How to draw a flower using Python turtle Asked 7 years, 11 months ago Modified 7 years, 11 months ago Viewed 5k times