用python写一个对会议室座位进行抽奖,并滚动显示,人工按停的的程序
时间: 2023-02-20 11:03:28 浏览: 159
详解用python写一个抽奖程序
这是一个代码示例:
```
import random
import time
seats = ['A1', 'A2', 'A3', 'A4', 'A5']
def lottery():
print('Start drawing...')
while True:
chosen_seat = random.choice(seats)
print('The winner is:', chosen_seat)
time.sleep(0.5)
stop = input('Press enter to stop the drawing, or press any key to continue...')
if stop == '':
break
lottery()
```
这个程序将会随机选择一个座位并打印,每次选择后会暂停0.5秒,如果用户按下回车键则停止抽奖,否则继续抽奖。你可以根据需要修改座位列表和暂停时间。
阅读全文