用python写一个随机点名的程序
时间: 2023-10-22 19:03:31 浏览: 90
python写一个随机点名软件的实例
好的,以下是用 Python 编写的一个随机点名的程序:
```python
import random
students = ['小明', '小红', '小华', '小王', '小李']
random_student = random.choice(students)
print('本次被点名的学生是:', random_student)
```
每次运行该程序,都会随机选择一个学生作为被点名的对象。希望您能够喜欢!
阅读全文