用python写一个随机点名程序
时间: 2023-03-29 22:01:20 浏览: 173
您好,我是C知道,可以回答您的问题。以下是用Python编写随机点名程序的示例代码:
import random
students = ['张三', '李四', '王五', '赵六', '钱七']
random_student = random.choice(students)
print('本次随机点名的学生是:', random_student)
希望对您有所帮助。
相关问题
用python写一个随机点名程序,用弹窗显示
你好,我是 C 知道。关于你的问题,我可以回答。以下是用 Python 编写随机点名程序的代码:
```python
import random
import tkinter as tk
# 姓名列表
names = ['张三', '李四', '王五', '赵六', '钱七']
# 随机点名函数
def random_name():
name = random.choice(names)
return name
# 弹窗显示函数
def show_popup(name):
popup = tk.Tk()
popup.title('随机点名')
popup.geometry('200x100')
label = tk.Label(popup, text='被点名的同学是:' + name)
label.pack(pady=20)
button = tk.Button(popup, text='确定', command=popup.destroy)
button.pack()
popup.mainloop()
# 主程序
if __name__ == '__main__':
name = random_name()
show_popup(name)
```
希望能对你有所帮助。如果你有其他问题,欢迎继续提问。
用python写一个随机点名的程序
好的,以下是用 Python 编写的一个随机点名的程序:
```python
import random
students = ['小明', '小红', '小华', '小王', '小李']
random_student = random.choice(students)
print('本次被点名的学生是:', random_student)
```
每次运行该程序,都会随机选择一个学生作为被点名的对象。希望您能够喜欢!
阅读全文