返回列表 發帖
  1. list=["a","b","c","d","e","f","g","h"]
  2. list1=[20,31,27,30,29,33,26,28]
  3. for i in range(8):
  4.     print("There are {} students in Class {}.".format(list1[i],list[i]))
複製代碼
Attention Seeker </3

TOP

返回列表