write a program of python to input marks of n students and find the average marks,highest marks and lowest marks
Answers
Answered by
0
Answer:
s = input("no. of students")
s =int(s)
for I in range(s):
if s <= 30:
print("too large")
break
a=input("no. of marks")
a=int(a)
average=("a/s")
print(a)
Similar questions