0

ここに私が持っているコードの小さなチャンクがあります:

studentName = ""

def getExamPoints (total):
    for i in range (4):
        total = 0.0
        examPoints = input ("Enter exam score for " + studentName + str(i+1) + ": ")
total = ?????
total = total/.50       
total = total * 100

どこ ?????4 つのスコアを加算する文字列を取得する方法がわかりません

後で入力した学生名と、後で使用するプログラムで必要になりますexamPoints = getExamPoints(studentName)

4

2 に答える 2

1

不正な入力のエラーチェックなし:

total = 0.0
for i in range (4):
    total += int(input ("Enter exam score for " + studentName + str(i+1) + ": "))
total = total/.50       
total = total * 100
于 2013-03-01T06:24:41.970 に答える
1

試しましたか

total += int(examPoints);
于 2013-03-01T06:25:04.380 に答える