0
Check my code I don't know that why it gives error on else..
i=int(input('please enter score')) if i<=100 and i>=90: print('A') elif i<=89 and i>=80: print('B') elif i<=79 and i>=70: print('C') elif i<=69 and i>=60: print('C') elif i<60 and i>0: print("F") else i>100 or i<0: print('Enter valid score')
3 Answers
+ 3
You can't use a condition in an else statement.
+ 2
See Last line
Else statement is wrong.
It does not take condition.
+ 1
Thanks to allš¤£š¤£š¤£...i literally forgot that..š¤£š¤£š¤£Thanks again