要在Python中繪制煙花,可以使用turtle
模塊來(lái)實(shí)現(xiàn)。下面是一個(gè)簡(jiǎn)單的例子:
import turtle
import random
# 創(chuàng)建一個(gè)海龜對(duì)象
t = turtle.Turtle()
# 設(shè)置畫(huà)布大小和背景色
screen = turtle.Screen()
screen.setup(800, 600)
screen.bgcolor("black")
# 煙花顏色列表
colors = ["red", "orange", "yellow", "green", "blue", "purple"]
# 定義繪制煙花的函數(shù)
def draw_firework():
# 隨機(jī)選擇煙花顏色
color = random.choice(colors)
# 繪制煙花爆炸的圓形
t.penup()
t.goto(random.randint(-400, 400), random.randint(-250, 250))
t.pendown()
t.color(color)
t.begin_fill()
t.circle(5)
t.end_fill()
# 繪制煙花爆炸的線條
for _ in range(8):
t.pensize(random.randint(1, 3))
t.penup()
t.goto(0, 0)
t.pendown()
t.color(color)
t.setheading(random.randint(0, 360))
t.forward(random.randint(100, 200))
# 循環(huán)繪制煙花
while True:
# 清空畫(huà)布
t.clear()
# 繪制煙花
draw_firework()
# 延時(shí)一段時(shí)間
turtle.delay(500)
這個(gè)例子使用turtle
模塊繪制煙花效果,每隔一段時(shí)間清空畫(huà)布并繪制一個(gè)新的煙花。煙花的顏色和形狀都是隨機(jī)生成的。你可以根據(jù)自己的需求來(lái)修改和擴(kuò)展這個(gè)例子。