Write a Python Program to Take in the Marks of 5 Subjects and Display the Grades as shown in the…
Write a Python Program to Take in the Marks of 5 Subjects and Display the Grades as shown in the (use list) Mark Grade Mark>=90 A Mark>=80 and Mark <90 B Mark>=70 and Mark <80 C Mark>=60 and Mark 70 D else ?? F Enter marks of the first subject: 99 Enter marks of the second subject: 76 Enter marks of the third subject: 68 Enter marks of the fourth subject: 58 Enter marks of the fifth subject: 82 Grade: A for mark 99 Grade: C for mark 76 Grade: D for mark 60 Grade: F for mark 58 Grade: B for mark 82