Like and subscribe.
#import turtle library
import turtle
#set background to black
turtle.bgcolor("black")
#set pencolor to orange
turtle.pencolor("yellow")
turtle.color("yellow","green")
#change pen shape
turtle.shape("turtle")
turtle.pensize(2)
for i in range(0,6):
turtle.forward(100)
turtle.left(60)
turtle.done()
コメント