18. Rewrite the program by correcting the error. Mark the corrections
for i in range(0.,10);
mark 7 = int(input("Enter a mark"))
if mark > 80 && mark <=100:
print (" Distinction ')
else if mark > 40 and mark < 81:
print ("First Class")
else
print ("Reappear")
Answers
Answered by
0
Answer:
..............................................
Answered by
1
for i in range(10):
marks = int(input("Enter marks: "))
if 80 < marks <= 100:
print("Distinction")
elif 40 < marks < 81:
print("First Class")
else:
print("Reappear")
Similar questions