当前位置:   article > 正文

随机分配办公室——python版_pycharm办公室分配代码

pycharm办公室分配代码

利用python列表相关知识,根据用户输入的办公室数目count和教师数目num,将num个教师 随机 分配到count个办公室中。

1.构建存储办公室和教师信息的列表offices
count = eval(input('请输入办公室个数:'))
offices = [[] for j in range(count)]
  • 1
  • 2

作用: 构建一个含有count个[]的列表offices,即最终的offices为一个嵌套列表。如用户输入的count=3,则执行过代码之后的offices为 [[],[],[]]

2.构建存储教师姓名的列表teachers并输入教师姓名
teachers = []
num = eval(input('请输入老师位数:'))
print(f'请依次输入这{num}位老师的名字:')
i= 0
while i < num:
    print(f'第{i + 1}位老师名字:',end="\t")
    name = input()
    teachers.append(name)
    i += 1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
3.将num个教师随机分配到count个办公室中
for name in teachers:
    num = random.randint(0, count-1)
    offices[num].append(name)
  • 1
  • 2
  • 3
4.输出办公室中的教师
i = 1
for office in offices:
    if len(office)==0:
        print(f'办公室{i}没有老师')
    else:
        print(f'办公室{i}的人数是{len(office)},老师分别是:')
        for name in office:
            print(name)
    i += 1

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

完整代码

import random

teachers = []
count = eval(input('请输入办公室个数:'))
offices = [[] for j in range(count)]

num = eval(input('请输入老师位数:'))
print(f'请依次输入这{num}位老师的名字:')
i= 0
while i < num:
    print(f'第{i + 1}位老师名字:',end="\t")
    name = input()
    teachers.append(name)
    i += 1

for name in teachers:
    num = random.randint(0, count-1)
    offices[num].append(name)


i = 1
for office in offices:
    if len(office)==0:
        print(f'办公室{i}没有老师')
    else:
        print(f'办公室{i}的人数是{len(office)},老师分别是:')
        for name in office:
            print(name)
    i += 1


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

运行样例

1.count=3 num=8

在这里插入图片描述

2.count=10 num=8

在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/851580
推荐阅读
相关标签
  

闽ICP备14008679号