ここに私が持っているコードの小さなチャンクがあります:
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)
。