About 51 results
Open links in new tab
  1. How to draw a circle using turtle in python? - Stack Overflow

    Nov 2, 2020 · I wanted ask how can I draw a circle using turtle module in python just using turtle.forward and turtle.left? I use the code below: for i in range(30): turtle.forward(i) turtle.left(i)

  2. Newest 'python-turtle' Questions - Stack Overflow

    I found helpful posts on this site on how to get a Python turtle to write rotated text by using the create_text() method in the tkinter Canvas object. The turtle is writing exactly what I want but it'...

  3. Python turtle set start position - Stack Overflow

    Jul 3, 2015 · How do I set the startpos (topleft of my turtle square) when starting my code? And I don't mean that it starts from the middle and then goes to that position. I want the turtle to start there.

  4. python - Draw dashed line using turtle graphics - Stack Overflow

    Jun 14, 2023 · python line turtle-graphics python-turtle edited Jun 14, 2023 at 7:32 matszwecja 8,245 2 13 22

  5. python - How to change size of turtle? - Stack Overflow

    Jun 29, 2016 · The first two 1.0 s in the tuple represents how many units 20 pixels the Turtle 's width and height are, and the last 1 represents the width of the Turtle 's outline.

  6. python - Turtle graphics, draw a filled star? - Stack Overflow

    python turtle-graphics python-turtle edited Dec 21, 2023 at 2:08 ggorlen 59.6k 9 119 174

  7. python - How to get the position of the turtle? - Stack Overflow

    Jul 14, 2017 · How can I find the coordinate of a turtle in python? For example, if the turtle is located at (200, 300), how would I retrieve that position?

  8. Python. Learning turtle graphics - Stack Overflow

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

  9. Draw a square in Python Turtle - Stack Overflow

    import turtle #acutally called turtle to draw a turtle beautiful also used to draw other stuff # to draw a square or eventually a turtle you need to do this things below # to draw a square you want to : move …

  10. 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...