1. 程式人生 > >八個老師隨機分配三個辦公室

八個老師隨機分配三個辦公室

random 老師 python ffice imp 辦公 dom ffi randint

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‘)

  

八個老師隨機分配三個辦公室