返回列表 發帖
list_1 = ["忠","孝","仁","愛","信","義","和","平"]
list_2 = [28,27,27,26,28,29,30,27]
for i in range(8):
    print("五年{}班有{}人".format(list_1[i],list_2[i]))

TOP

返回列表