Header Ads

Amazing Graphics Animation Using Python Turtle 💥💥😎🥰 | Coding Status #shorts #codingshorts

 Let's Start


Video Tutorial 

You can visit our YouTube channel 'Mr. Code Box' and watch the video tutorial.

My Instagram id:- Click Here



Source Code

import turtle as t

t.speed(0)
t.bgcolor('#252525')
t.color('yellow')
t.pensize(2)

for i in range(600):
    if i%5==0:
        t.lt(3)
    t.fd(200)
    t.lt(360/5)
t.done()

Output



No comments

Powered by Blogger.