Merry Christmas


 from turtle import *

bgcolor('black')
speed(0)
pencolor('black')
color('green')
begin_fill()
rt(30)
fd(80)
lt(150)
fd(100)
rt(150)
fd(60)
lt(150)
fd(100)
rt(150)
fd(40)
lt(150)
fd(120)
lt(120)
fd(120)
lt(150)
fd(40)
rt(150)
fd(100)
lt(150)
fd(60)
rt(150)
fd(100)
lt(150)
fd(80)
end_fill()
color('grey')
begin_fill()
rt(120)
fd(112)
lt(90)
fd(10)
lt(90)
fd(112)
end_fill()
penup()
fd(212)
lt(90)
fd(15)
pendown()
def star():
color('yellow')
begin_fill()
for i in range(5):
fd(30)
lt(150)
fd(30)
rt(80)
end_fill()
star()

hideturtle()
penup()
fd(50)
lt(98)
fd(140)
pendown()
begin_fill()
color('red')
circle(5)
end_fill()

penup()
rt(10)
fd(65)
pendown()
color('yellow')
begin_fill()
circle(5)
end_fill()

penup()
lt(10)
fd(60)
pendown()
color('white')
begin_fill()
circle(5)
end_fill()

penup()
lt(92)
fd(146)
pendown()
color('red')
begin_fill()
circle(5)
end_fill()

penup()
lt(83)
fd(57)
pendown()
color('white')
begin_fill()
circle(5)
end_fill()

penup()
lt(20)
fd(70)
pendown()
color('yellow')
begin_fill()
circle(5)
end_fill()

penup()
fd(200)
lt(77)
fd(140)
rt(90)
pendown()
color('white')
write("Merry Christmas",font=('arial',24,'normal'))

penup()
lt(180)
fd(400)
pendown()
write("☁️ ☁️ ☁️ ☁️ ☁️ ☁️ ☁️ ",font=('arial',24,'normal'))

penup()
lt(180)
fd(163)
rt(90)
fd(99)
pendown()

color('pink')
begin_fill()
circle(5)
end_fill()

penup()
fd(45)
pendown()
color('red')
begin_fill()
circle(5)
end_fill()

penup()
lt(100)
fd(90)
pendown()

color('white')
begin_fill()
circle(5)
end_fill()

done()

Comments

Popular Posts