Sorry if this seems like a stupid question, I'm rather new to Python. I need to create a program for a school project. The project outline says this: Students can earn their final mark in a course in two ways. First the course work can be worth 60%, the final project worth 20% and the final exam worth 20%. Alternately, the course work can be worth 70%, the final project worth 10% and the final exam worth 20%. Use the following code as a start and create a program that outputs the highest grade the student could achieve.
course = 87
finalProject = 75
exam = 82
Once again, I apologize if this seems like a stupid question, I'm quite new to Python. I just need to know the best way of going about doing this.