当前位置:   article > 正文

Python编写将八个老师随机分配到三个办公室中_python随机分配办公室

python随机分配办公室
#题目:将八个老师随机分配到三个办公室中
import random
offices = [[],[],[]]
names = ["A","B","C","D","E","F","G","H"]
for name in names:
    n = random.randint(0,2)
    offices[n].append(name)
print(offices)  #可以查看随机分派的办公室
i = 1
for office in offices:
    print("办公室%d的老师有%d人,分别为:"%(i,len(office)))
    i += 1
    for name in office:
        print(name,end="\t")
    print(end="\n")
    print("-"*30)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/488658
推荐阅读
相关标签
  

闽ICP备14008679号