Python quick graphic project
Youtube Video
Source Code
import turtle as tl
tl.bgcolor("black")
tl.pensize(5)
tl.speed(0)
for i in range (5):
for colours in ["red","blue","gray","black","cyan","green","magenta"]:
tl.color(colours)
tl.circle(150)
tl.right(15)
tl.hideturtle()
No comments:
Post a Comment