Draw Spiralling Circles Using Turtle Graphics in Python Last Updated : 01 Oct, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report Turtle is an inbuilt module of python. It enables us to draw any drawing by a turtle, methods defined in the turtle module, and by using some logical loops. To draw something on the screen(cardboard) just move the turtle(pen). To move turtle(pen) there are some functions i.e forward(), backward(), etc. Approach: Import and create a turtle instance.Set the graphical visuals as per your needs.Run a for loop for some integer values i.For each value of i, draw a circle with a radius as i.Now rotate the turtle by a fixed degree. Below is the implementation of the above approach Python3 # importing turtle import turtle # initialise the turtle instance animation = turtle.Turtle() #creating animation # changes speed of turtle animation.speed(0) # hiding turtle animation.hideturtle() # changing background color animation.getscreen().bgcolor("black") # color of the animation animation.color("red") for i in range(100): # drawing circle using circle function # by passing radius i animation.circle(i) # changing turtle face by 5 degree from it's # previous position after drawing a circle animation._rotate(5) Output: Comment More infoAdvertise with us Next Article Draw Black Spiral Pattern Using Turtle in Python A aaditya_bhargav Follow Improve Article Tags : Python Python Programs Python-turtle Practice Tags : python Similar Reads Draw Colorful Spiral Web Using Turtle Graphics in Python âTurtleâ is a Python feature like a drawing board, which lets us command a turtle to draw all over it. This comes packed with the standard Python package and need not be installed externally.Methods used:forward(value): moves the turtle in the forward direction.turtle.Pen(): setup the turtle penspee 1 min read Draw Star Using Turtle Graphics-Python Python's Turtle module offers a fun and interactive way to create graphics by controlling a turtle (pen) to draw on the screen. In this article, we will learn how to use Turtle to draw a simple star. Some commonly used methods are:forward(length) moves the pen in the forward direction by x unit.back 2 min read Python - Draw Octagonal shape Using Turtle Graphics In this article, we will learn how to Make an Octagon using Turtle Graphics in Python. For that lets first know what is Turtle Graphics. Turtle graphicsbackward(length): moves the pen in the backward direction by x unit.right(angle): rotate the pen in the clockwise direction by an angle x.left(angle 1 min read Python - Draw Hexagon Using Turtle Graphics In this article, we will learn how to make a Hexagon using Turtle Graphics in Python. For that lets first know what is Turtle Graphics. Turtle graphics Turtle is a Python feature like a drawing board, which let us command a turtle to draw all over it! We can use many turtle functions which can move 2 min read Draw Black Spiral Pattern Using Turtle in Python Prerequisite: Turtle Programming in Python âTurtleâ is a Python feature like a drawing board, which lets us command a turtle to draw all over it. This module comes packed with the standard Python package and need not be installed externally. Functions used:forward(value): It moves the turtle in forw 1 min read Create a Snake-Game using Turtle in Python The Snake Game is a classic arcade game first released in 1976 by Gremlin Industries and published by Sega. The goal is simple to control the snake using arrow keys, collect food to grow longer and avoid hitting the walls or yourself. Weâll build this game in Python using the following modules:Turtl 6 min read Like