标签:[] 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