51学通信论坛2017新版

标题: 嵌套列表的遍历举例 [打印本页]

作者: admin    时间: 2019-6-21 23:37
标题: 嵌套列表的遍历举例
一个学校,有3个办公室,现在有8位老师等待工位的分配,请编写程序,完成随机的分配。
  1. import random

  2. # 定义一个列表用来保存3个办公室
  3. offices = [[],[],[]]

  4. # 定义一个列表用来存储8位老师的名字
  5. names = ['A','B','C','D','E','F','G','H']

  6. i = 0
  7. for name in names:
  8.     index = random.randint(0,2)   
  9.     offices[index].append(name)
  10. i = 1
  11. for tempNames in offices:
  12.     print('办公室%d的人数为:%d'%(i,len(tempNames)))
  13.     i+=1
  14.     for name in tempNames:
  15.         print("%s"%name,end='')
  16.     print("\n")
  17.     print("-"*20)
复制代码
执行结果:
  1. 办公室1的人数为:3
  2. AFH

  3. --------------------
  4. 办公室2的人数为:2
  5. CD

  6. --------------------
  7. 办公室3的人数为:3
  8. BEG

  9. --------------------
复制代码














欢迎光临 51学通信论坛2017新版 (http://bbs.51xuetongxin.com/) Powered by Discuz! X3