我是一名 Python 初学者,我无法让一件事起作用。看,我们的老师告诉我们做一个函数来计算所有考试分数的平均分数,考试次数不定。它必须在 Python 2.7 中。
def main():
print("This program computes the average of multiple exam scores.")
scoresno = input("Enter number of exam scores: ")
for scores in range(scoresno):
scores = input("Enter exam score: ")
average = scores/(scoresno + 0.0)
print "Exam score average is:", (average)
main()
这显然不起作用,我怎样才能让它起作用?