【发布时间】:2015-11-27 07:26:34
【问题描述】:
我需要编写一个程序,根据以下输入和过程计算课程的成绩:
询问用户他们课程中的测试、作业、测验和实验室的数量。
询问用户是否存在与上述测试不同的重量,例如一个课程有 2 次测试,每一次占 12.5%,最后一次占 15%。
对于数字 > 0 a 的每个类别。提示用户输入 100% 中的加权百分比,所有类别的总和应为 100%!!!湾。获取类别的分数。 C。如果类别是实验室,则将所有分数相加。 d。否则,平均分数。 e.计算类别的加权平均值。
使用每个类别的加权平均值,计算课程中的成绩。
询问用户他/她是否想计算另一个班级的成绩。
如果用户回答是,则返回步骤 1。 7. 否则,结束程序。
我几乎完成了该程序并拥有了我的所有功能,但我很难将它们全部组合在一起并正常工作。我的第一个问题是合并步骤 5/6 并让 while 循环与其余代码一起工作。此外,我很难将实验室分数相加并将该值纳入加权平均值。
非常感谢任何帮助!
这是我的代码:
def main():
inputList = get_user_input()
average = get_scores(inputList)
weightedAvgs = get_weightedavg(average, inputList)
results = get_class_grade(weightedAvgs)
ans = "yes"
while(ans == "yes"):
def get_user_input():
inputList = [] # initializes a list
# Gets how many scores for each category the user would like to enter and adds value to a list
tests = int(input("How many tests scores would you like to enter? "))
inputList.append(tests)
assignments = int(input("How many assignment scores would you like to enter: "))
inputList.append(assignments)
quizzes = int(input("How many quiz scores would you like to enter? "))
inputList.append(quizzes)
labs = int(input("How many lab scores would you like to enter? "))
inputList.append(labs)
final = int(input("How many final scores would you like to enter? "))
inputList.append(final)
# Gets the weight of each category if there are any scores to enter and adds the value to a list
if tests > 0:
testWeight = float(input("Enter the weight of tests: "))
inputList.append(testWeight)
else:
testWeight = 0
if assignments > 0:
assignmentWeight = float(input("Enter the weight of assignments: "))
inputList.append(assignmentWeight)
else:
assignmentWeight = 0
if quizzes > 0:
quizWeight = float(input("Enter the weight of quizzes: "))
inputList.append(assignmentWeight)
else:
quizWeight = 0
if labs > 0:
labWeight = float(input("Enter the weight of labs: "))
inputList.append(labWeight)
else:
labWeight = 0
if final > 0:
finalWeight = float(input("Enter the weight of the final: "))
inputList.append(finalWeight)
else:
finalWeight = 0
return(inputList)
def get_scores(inputList):
# Gets scores for each category & calculates avg for each category
average = []
testScoreList = []
tests2 = inputList[0]
for x in range(tests2):
testScore = float(input("Enter your test score: "))
testScoreList.append(testScore)
if tests2 == 0:
testAvg = 0
else:
testAvg = sum(testScoreList) / inputList[0]
average.append(testAvg)
assignmentScoreList = []
assignments2 = inputList[1]
for x in range(assignments2):
assignmentScore = float(input("Enter your assignment score: "))
assignmentScoreList.append(assignmentScore)
if assignments2 == 0:
assignmentAvg = 0
else:
assignmentAvg = sum(assignmentScoreList) / inputList[1]
average.append(assignmentAvg)
quizScoreList = []
quizzes2 = inputList[2]
for x in range(quizzes2):
quizScore = float(input("Enter your quiz score: "))
quizScoreList.append(quizScore)
if quizzes2 == 0:
quizAvg = 0
else:
quizAvg = sum(quizScoreList) / inputList [2]
average.append(quizAvg)
labScoreList = []
labs2 = inputList[3]
for x in range(labs2):
labScore = float(input("Enter your lab score: "))
labScoreList.append(labScore)
if labs2 == 0:
labSum = 0
else:
labSum = sum(labScoreList)
average.append(labSum)
finalScoreList = []
final2 = inputList[4]
for x in range(final2):
finalScore = float(input("Enter the score for your final: "))
finalScoreList.append(finalScore)
if final2 == 0:
finalAvg = 0
else:
finalAvg = sum(finalScoreList) / inputList[4]
average.append(finalAvg)
def get_weighted_avg(average, inputList):
weightedAvgs = []
weightedTestAvg = average[0] * inputList[5]
weightedAvgs.append(weightedTestAvg)
print("Your weighted average is " + str(weightedTestAvg))
weightedAssignmentAvg = average[1] * inputList[6]
weightedAvgs.append(weightedAssignmentAvg)
print("Your weighted average is " + str(weightedAssignmentAvg))
weightedQuizAvg = average[2] * inputList[7]
weightedAvgs.append(weightedQuizAvg)
print("Your weighted average is " + str(weightedAssignmentAvg))
weightedLabSum = average[3] * inputList[8]
weightedAvgs.append(weightedLabSum)
print("The sum of your lab scores are " + str(weightedLabAvg))
weightedFinalAvg = average[4] * inputList[9]
weightedAvgs.append(weightedFinalAvg)
print("Your weighted average is " + str(weightedFinalAvg))
return(weightedAvgs)
def get_class_grade(weightedAvgs):
grade = weightedAvgs[0] + weightedAvgs[1] + weightedAvgs[2] + weightedAvgs[3] + weightedAvgs[4]
if grade >= 90:
finalGrade = "A"
elif grade >= 80:
finalGrade = "B"
elif grade >= 70:
finalGrade = "C"
elif grade >= 60:
finalGrade = "D"
else:
finalGrade = "F"
print("Your grade is " + finalGrade)
ans = (input("Would you like to calculate a grade for another class? "))
while(ans != "yes" and ans != "no"):
print("Please type yes or no")
ans = (input("Would you like to calculate a grade for another class? "))
if ans == "no":
exit()
main()
【问题讨论】:
-
为什么要将函数嵌入到 while 循环中?
-
您的代码复杂度确实让人难以阅读。请考虑以这样的方式重新组织您的代码,使主循环仅包含少量行,这些行可以调用其他函数。
-
@Oz123 我不确定如何合并 while 循环。我的想法是,如果我将 while 循环包裹在我的所有代码(包括函数)周围,只要条件为真,其中的所有内容都会运行。为了解决您的第二条评论,我很抱歉,但我不知道该怎么做。我是编程新手。
-
对于初学者,您需要将函数定义移到
while循环之外。首先定义函数,然后调用它们。请查看introductory Python tutorial; SO尝试教授该材料并不实际(或适当)。完成此操作后,查看其他人编写的代码以了解在 Python 中组织事物的常用方法也会有所帮助。
标签: python arrays function python-3.x computer-science