帮我写一个烟花表白python代码
时间: 2023-08-20 08:12:54 浏览: 176
用python写的烟花代码
好的,以下是一个简单的烟花表白 Python 代码,仅供参考:
```python
import random
import time
def firework():
colors = ['red', 'green', 'blue', 'yellow', 'magenta', 'cyan', 'white']
color = random.choice(colors)
size = random.randint(6, 10)
burst = random.randint(30, 50)
for i in range(burst):
x = random.randint(-size, size)
y = random.randint(-size, size * 2)
z = random.randint(-size, size)
print('\033[{};{}H\033[{}m*\033[0m'.format(y+10, x+40, color), end='')
time.sleep(0.005)
print('\033[0m')
def display_message(message):
print('\n\n')
print('\033[35m' + message.center(70) + '\033[0m')
def main():
display_message('亲爱的XXX:')
time.sleep(1)
display_message('我喜欢你已经很久了,想和你一起看烟花')
time.sleep(2)
for i in range(10):
firework()
display_message('愿得一人心,白首不分离!')
if __name__ == '__main__':
main()
```
这段代码会在终端中显示一个烟花表白场景,包括烟花的颜色、大小、数量等。你可以将其中的 `XXX` 替换成你所喜欢的人的名字。
阅读全文