赞
踩
当然可以!这是一份简单的烟花代码:
- import turtle
- import random
-
- # 设置画布大小
- turtle.screensize(800, 600)
-
- # 隐藏海龟形状
- turtle.hideturtle()
-
- # 设置画笔速度
- turtle.speed(0)
-
- # 定义颜色列表
- colors = ['red', 'orange', 'yellow', 'green', 'blue', 'purple']
-
- # 循环绘制烟花效果
- for i in range(20):
- # 设置画笔颜色
- turtle.pencolor(random.choice(co
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。