dict = {}

for i in range(1, 6):
if i not in dict:
dict[i] = []
for j in range(101, 106):
dict[i].append(j)

print(dict)


相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-01
  • 2022-12-23
  • 2022-03-11
  • 2022-12-23
猜你喜欢
  • 2021-11-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-29
  • 2022-12-23
  • 2022-01-29
相关资源
相似解决方案