Write a program to create a list of marks of 10 students in IP subject. Find
the maximum and the minimum marks. python program
Answers
Answered by
3
Explanation:
Here,
print("Enter Marks Obtained in 3 Subjects: ")
mone = int(input()
mTwo = int(input()
mThree = int(input()
sum = mOne+mTwo+mThree
Computer Science
10 points e
ll Vo WiFi
87
avg = sum/3
perc = (sum/300)*100
print(end="Average Mark = ")
print(avg)
print(end="Percentage Mark = = ")
print(perc)
Similar questions