简单的Python新年烟花代码示例:
import random
import timedef create_firework():colors = ['红色', '橙色', '黄色', '绿色', '蓝色', '紫色']flashes = ['爆裂', '闪光', '旋转', '流星', '喷射']color = random.choice(colors)flash = random.choice(flashes)print(f"发射一枚{color}的烟花,效果为{flash}!")time.sleep(1)def celebrate_new_year(num_fireworks):for i in range(num_fireworks):create_firework()num_fireworks = 10
celebrate_new_year(num_fireworks)
在上述代码中,定义了两个函数:create_firework和celebrate_new_year。
create_firework函数用于创建一朵随机颜色和效果的烟花,并打印出其属性。
celebrate_new_year函数用于循环调用create_firework函数来庆祝新年,指定了庆祝烟花的数量。
在主程序中,设定了庆祝新年的烟花数量为10枚,并调用celebrate_new_year函数来进行庆祝。
每发射一枚烟花,都会输出其属性,并通过time.sleep(1)函数让程序暂停1秒,以模拟烟花间隔。