冬天到了 ,送大家一个满天星
import turtle as t #导入turtle模块
from random import choice #导入choice模块
t.speed(10000) #画笔速度
t.width(1) #宽度
t.bgcolor("black") #画布颜色
for n in range(100):
# color1 = ["red", "blue", "pink", "purple", "green", "yellow"]
# color2 = choice(color1) 可以随机选取颜色想要白色可以把这里删掉
t.color("white") #白色画笔
x=list(range(-800,800))
y=list(range(-400,400))
x1=choice(x)
y1=choice(y)
t.penup()
t.goto(x1,y1)
t.begin_fill()
for i in range(5): #画一个五角星
t.pendown()
t.fd(30)
t.left(144)
t.end_fill()
t.right(90)
t.done()