Question: Please have it written in Python Write a program MaximumScore.py that receives a student ID, their name, and the score obtained by the student. Output

Please have it written in Python
Write a program MaximumScore.py that receives a student ID, their name, and the score obtained by the student. Output should display maximum score and the student who got the maximum score. Additional information Use input to receive user input Use floating point number for the score (between 0 and 100) Use integer for student ID Assume that there are only five students Assume that only one student got the maximum. Meaning, there cannot be two winners. Expected output Enter student id and score: 101, 89.5 Enter student name: Albert Enter student id and score: 102, 92.5 Enter student name: Bill Enter student id and score: 103, 95.5 Enter student name: Capa Enter student id and score: 104, 79.5 Enter student name: Danny Enter student id and score: 105, 90.5 Enter student name: Edgar Maximum score: 95.5 Student id: 103 Student name: Capa
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
