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

在哪里????是我不知道如何让字符串相加四个分数

我后来输入的学生姓名,在我使用的程序中需要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 回答