About 716,000 results
Open links in new tab
  1. loops - How do I draw a circle looping around with a circle in …

    Apr 22, 2016 · Write a subroutine to draw a circle. Then, write another subroutine that draws a circle, curving in the opposite direction, and calls the first subroutine to draw additional circles …

  2. Turtle Graphics with loops - Python Classroom

    Mar 30, 2019 · import turtle angle = 91 turtle.showturtle() turtle.shape("turtle") for x in range(100): turtle.circle(x) turtle.left(angle)

  3. Draw Circle in Python using Turtle - GeeksforGeeks

    May 1, 2025 · We are given the task of drawing a flower using Turtle Graphics in Python. Our goal is to create a design that looks like a flower with multiple petals arranged in a circular pattern. …

  4. turtleTurtle graphics — Python 3.13.3 documentation

    1 day ago · turtle. circle (radius, extent = None, steps = None) ¶ Parameters: radius – a number. extent – a number (or None) steps – an integer (or None) Draw a circle with given radius. The …

  5. Python Turtle Circle

    Oct 13, 2021 · Python turtle circle steps. In this section, we will learn about how to draw a circle with steps in Python turtle. We use turtle.circle(radius,extend=None,steps=None) for creating …

  6. Make a Turtle Move in Circles – 30 STEM Links a Week

    Instead, let’s throw in some variables, and keep our code short with the help of a while loop: from turtle import Turtle, Screen screen = Screen() rosa = Turtle() rosa.shape('turtle') radius = 10 …

  7. The Python `turtle` Library - A Step-by-Step Tutorial

    May 27, 2020 · Here's how you could use a while loop along with the Python turtle library: import turtle screen = turtle.getscreen() tt = turtle.Turtle() x=60 while x >= 40: tt.circle(x) x = x-5 The …

  8. Python Turtle: Guide to Create Shapes, Loops, Interactive Elements

    With the help of loops, you can create shapes like squares, circles, and polygons in Python Turtle. You can use loops to draw a circle. The numerals inside the brackets indicate the radius. …

  9. How to Draw Circles Using Python Turtle - Quick Programming …

    In this article I will show you how we can use the turtle commands to draw circle based shapes. The following python script creates a simple circle with default color at the center of the turtle …

  10. 2.8 WHILE LOOPS - programmierkonzepte.ch

    To make it a bit more fun, you can switch out the turtle icon for a spider. makeTurtle("sprites/spider.png") a = 5 while a < 200: . forward(a) right(90) a = a + 2 . A while …

  11. Some results have been removed