Introduction to Programming using Python 1st Edition

Published by Pearson
ISBN 10: 0132747189
ISBN 13: 978-0-13274-718-9

Chapter 5 - Loops - Programming Exercises - Page 160: 5.11

Answer

Code

Work Step by Step

$Code:$ numberOfStudent=int(input("Enter Number Of Students:")) highest=0 secondHigh=0 name=" " student1="" student2="" for a in range(0,numberOfStudent): $ $ $ $ $ $ $ $ name=input("student Name:") $ $ $ $$ $ $ $ score=int(input("Score:")) $ $ $ $$ $ $ $$ $ $ $ if a==0: $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ $ $ $ $ highest=score $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ student1=name $ $ $ $$ $ $ $$ $ $ $$ $ $ $ elif a==1 and score>highest: $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ secondHigh = highest $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ highest = score $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ student2 = student1 $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ student1 = name elif a==1: $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ secondHigh= score $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ student2 = name elif a>1 and score>highest and score >secondHigh: $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ secondHigest = highest $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ student2 = student1 $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ highest = score $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ student1 = name elif a>1 and score>secondHigh: $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ student2 = name $ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $$ $ $ $ secondHigest = score print("Highest scoring student:",student1,"Second Highest scoring student:",student2)
Update this answer!

You can help us out by revising, improving and updating this answer.

Update this answer

After you claim an answer you’ll have 24 hours to send in a draft. An editor will review the submission and either publish your submission or provide feedback.