列表联系(回炉练习)
Posted zhaohongtaodepython
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了列表联系(回炉练习)相关的知识,希望对你有一定的参考价值。
__author__ = ‘zht‘ #!/usr/bin/env python # -*- coding: utf-8 -*- ‘‘‘ #努力学习每一天 ‘‘‘ import random offices = [[],[],[]] names = [‘A‘,‘B‘,‘C‘,‘D‘,‘E‘,‘F‘,‘G‘,‘H‘] i = 1 for name in names: index = random.randint(0,2) offices[index].append(name) print(offices) for temp in offices: print("办公室%d的人数为%d"%(i,len(temp))) for name in temp: print("%s"%(name),end=‘,‘) i+= 1 print(" ")
#某个学校,有3个办公室,现在有8位老师等待工位的分配,请编写程序,完成随机的分配
以上是关于列表联系(回炉练习)的主要内容,如果未能解决你的问题,请参考以下文章