Amazing Graphics Animation Using Python Turtle 💥💥😎🥰 | Coding Status
Amazing Graphics Animation Using Python Turtle 💥💥😎🥰 | Coding Status
Let's Start
Video Tutorial
You can visit our YouTube channel 'Mr. Code Box' and watch the video tutorial.
Source Code
import turtle as t
t.bgcolor('black')
t.tracer(50)
t.pensize(7)
t.goto(-40,-300)
c = ['red','Yellow']
t.rt(4)
for i in range(300):
t.color(c[i%2])
t.up()
t.circle(300-i,-92)
t.down()
t.circle(300-i,-92)
t.done()
Post a Comment