

InterviewSolution
Saved Bookmarks
1. |
Write python program that accepts marks in 5 subjects and output average marks. |
Answer» Sub1=int(input("enter marks in first subject :"))Write The same line for other four subjects only change subject number and then:Avg=(sub1+sub2+sub3+sub4+sub5)/5Print(avg) | |