八个老师随机分配三个办公室
生活随笔
收集整理的這篇文章主要介紹了
八个老师随机分配三个办公室
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
import random
office = [[], [], []]
teacher = ['t1', 't2', 't3', 't4', 't5', 't6', 't7', 't8']
for t in teacher:of = random.randint(0, 2)office[of].append(t)
print(office)
i = 0
for x in office:i += 1print('第%d個辦公室有%d個人,是:' % (i, len(x)), end='')for n in x:print(n, end='\t')print('\n')
轉載于:https://www.cnblogs.com/wf-skylark/p/9009654.html
總結
以上是生活随笔為你收集整理的八个老师随机分配三个办公室的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: amazeui学习笔记--css(布局相
- 下一篇: 中文乱码解决方案(Qt4.8.3 + Q