import turtle as tl
tl.pensize(10)
tl.color("yellow")
tl.fillcolor("red")
tl.begin_fill()
tl.right(144)
tl.forward(200)
tl.right(144)
tl.forward(200)
tl.left(72)
tl.forward(200)
tl.right(144)
tl.forward(200)
tl.left(72)
tl.forward(200)
tl.right(144)
tl.forward(200)
tl.left(72)
tl.forward(200)
tl.right(144)
tl.forward(200)
tl.left(72)
tl.forward(200)
tl.right(144)
tl.forward(200)
tl.end_fill()
import turtle as tl
tl.color("red")
tl.forward(100)
tl.left(90)
tl.forward(100)
tl.left(90)
tl.color("green")
tl.forward(100)
tl.left(90)
tl.forward(100)
import turtle as tl
tl.pensize(10)
tl.color("red")
tl.fillcolor("blue")
tl.begin_fill()
tl.forward(300)
tl.left(120)
tl.forward(300)
tl.left(120)
tl.forward(300)
tl.end_fill()
#Square_Screw.py
from turtle import *
pensize(3)
bgcolor("black")
colormode(255)
pencolor((51,204,120))
for i in range(100):
fd(i +(i*2))
left(90)
hideturtle()
done()