放烟花的python代码
时间: 2023-10-20 09:07:46 浏览: 195
使用 Python展示烟花代码.txt
好的,这是一个使用 Python 编写的简单的放烟花的代码示例:
```
import turtle
import random
# 设置画布
turtle.setup(800, 600)
turtle.bgcolor('black')
turtle.tracer(0, 0)
# 设置烟花的形状
turtle.shape('circle')
# 设置烟花的颜色
colors = ['red', 'orange', 'yellow', 'green', 'blue', 'purple']
# 循环放烟花
while True:
x = random.randint(-400, 400)
y = random.randint(-300, 300)
color = random.choice(colors)
turtle.penup()
turtle.goto(x, y)
turtle.pendown()
turtle.color(color)
turtle.stamp()
turtle.update()
```
这段代码将在黑色的画布中随机放置红、橙、黄、绿、蓝、紫六种颜色的烟花。
希望这能帮到你。
阅读全文