第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

將數(shù)組添加在一起時(shí)只能將列表(而不是“int”)集中到列表

將數(shù)組添加在一起時(shí)只能將列表(而不是“int”)集中到列表

翻翻過去那場雪 2023-07-05 16:22:59
我有一個(gè)項(xiàng)目,我必須將學(xué)生的考試分添加到班級總分中,然后找到班級平均分。AllStudents = []Sum = 0ClassSum = []Total = []for x in range(2):    name = input("enter student name: ")    Student = []    Student.append(name)    StudentPoint1 = int(input("points for test 1: "))    if StudentPoint1 > 20:        print("Test 1 score invalid, should be less than 20")    StudentPoint2 = int(input("points for test 2: "))    if StudentPoint2 > 25:        print("Test 2 score invalid, should be less than 25")    StudentPoint3 = int(input("points for test 3: "))    if StudentPoint1 > 35:        print("Test 3 score invalid, should be less than 35")    Student.append(StudentPoint1)    Student.append(StudentPoint2)    Student.append(StudentPoint3)    Sum = StudentPoint1 + StudentPoint2 + StudentPoint3    Total.append(Sum)    ClassSum.append(Total + Sum)    AllStudents.append(Student)print(ClassSum)print(AllStudents)```在顯示 ClassSum.append(Total + Sum) 的行上,我收到錯(cuò)誤“只能將列表(而不是“int”)集中到列表”
查看完整描述

3 回答

?
溫溫醬

TA貢獻(xiàn)1752條經(jīng)驗(yàn) 獲得超4個(gè)贊

我不知道你到底想做什么,但我認(rèn)為用“+=”遞增比附加到列表更好。如果有幫助的話我編寫了這段代碼:


AllStudents = []

Sum = 0

ClassSum = 0

Total = []

for x in range(2):

    name = input("enter student name: ")


    Student = []

    Student.append(name)


    StudentPoint1 = int(input("points for test 1: "))

    if StudentPoint1 > 20:

        print("Test 1 score invalid, should be less than 20")


    StudentPoint2 = int(input("points for test 2: "))

    if StudentPoint2 > 25:

        print("Test 2 score invalid, should be less than 25")


    StudentPoint3 = int(input("points for test 3: "))

    if StudentPoint1 > 35:

        print("Test 3 score invalid, should be less than 35")


    Student.append(StudentPoint1)

    Student.append(StudentPoint2)

    Student.append(StudentPoint3)


    Sum = StudentPoint1 + StudentPoint2 + StudentPoint3

    ClassSum+=Sum


    AllStudents.append(name)


print(ClassSum)

print(AllStudents)

print(f'Average is {ClassSum/len(AllStudents)}')


查看完整回答
反對 回復(fù) 2023-07-05
?
牛魔王的故事

TA貢獻(xiàn)1830條經(jīng)驗(yàn) 獲得超3個(gè)贊

如果您嘗試為每個(gè)學(xué)生添加總和,則您正在嘗試對列表和整數(shù)變量求和,那么您需要使用列表索引進(jìn)行訪問。 ClassSum.append(Total[x] + Sum)



查看完整回答
反對 回復(fù) 2023-07-05
?
慕婉清6462132

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超2個(gè)贊

嘗試

ClassSum.append(sum(Total))

您不能使用整數(shù)和列表作為操作數(shù)執(zhí)行加法。另外,為什么您要嘗試添加Sum已經(jīng)作為其元素的Total內(nèi)容。TotalSum


查看完整回答
反對 回復(fù) 2023-07-05
  • 3 回答
  • 0 關(guān)注
  • 138 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號