码迷,mamicode.com
首页 > 其他好文 > 详细

八个老师随机分配三个办公室

时间:2018-05-08 19:39:05      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:[]   print   random   pre   python   port   import   办公   highlight   

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 += 1
    print(‘第%d个办公室有%d个人,是:‘ % (i, len(x)), end=‘‘)
    for n in x:
        print(n, end=‘\t‘)
    print(‘\n‘)

  

八个老师随机分配三个办公室

标签:[]   print   random   pre   python   port   import   办公   highlight   

原文地址:https://www.cnblogs.com/wf-skylark/p/9009654.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!