Awesome Pattern in Python using the Turtle Feature

Hello guys this is Satyam,again back with another awesome blog and in this blog I am going to show you how you can create an amazing pattern like shown below using the turtle feature in Python so this will be an awesome Python program so let's get started



The code for the above pattern is given below:

from turtle import Turtle 
t = Turtle()
t.speed(0)
b = 180
for c in range(5):
  a = 9*c 
  for i in range(100):
    t.circle(i,a)
    t.right(b)
    t.circle(i,a)
    t.right(b)
    t.circle(i,a)
    t.right(b)
    t.circle(i,a)

Please note that after running the program you will need to press any key from your keyboard for the creation of this pattern or design.

Watch the Video Tutorials for Creating this Pattern:

Coder's Merchandise:


Thanks for Reading

No comments: