Question: fill in the missing function Course Evaluation Program - - - - - - - - - - - - - - - - -

fill in the missing function
Course Evaluation Program
-------------------------
Enter course to evaluate (e.g. CSCI 127): CSCI 127
Enter your topic interest rating [0-100]: 100
Enter your difficulty estimation rating [0-100]: 45
Enter your instructor assessment rating [0-100]: 95
CSCI 127 rating: 80.0
Highly recommended!
python code:
def main():
print("Course Evaluation Program")
print("-------------------------")
ratings =["topic interest", "difficulty estimation", "instructor assessment"]
course = input("Enter course to evaluate (e.g. CSCI 127): ")
course_rating = rate_course(ratings)
print(course, "rating: ", course_rating)
if course_rating >=70:
print("Highly recommended!")
elif course_rating >=30:
print("Neutral recommendation")
else:
print("Not recommended!")
# ---------------------------------------
main()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!