Draw Windows logo


 

#import the turtle library as t
from turtle import *
#change the pen speed
speed(1)
#change the screen color
bgcolor("black")
penup()
#change the pen position
goto(-50,60)
pendown()
color('#00adef')
begin_fill()
#change the position
goto(100,100)
goto(100,-100)
goto(-50,-60)
 
goto(-50,60)
end_fill()
 
color("black")
goto(15,100)
color("black")
width(10)
goto(15,-100)
penup()
 
goto(100,0)
pendown()
 
goto(-100,0)
 
done()

Comments