列表联系(回炉练习)

2018-07-23 05:41:43来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

__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("\n")

  

#某个学校,有3个办公室,现在有8位老师等待工位的分配,请编写程序,完成随机的分配

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:统计字符串中,各个字符的个数(回炉练习)

下一篇:python之列表