what should I do?
I gave this error:
mylist=input('please inter your condition :')
If mylist == '10' or '9' or '8':
print('well')
print('well done')
else if mylist == '7' or'6' or '5' or '4' or '3':
print('mid')
print('moderate')
else if mylist == '2' or '1':
print('weak')
else print('0')
File "<ipython-input-42-fc470037cf12>", line 5
else if mylist == '7' or'6' or '5' or '4' or '3':
^
SyntaxError: expected ':'
I change space between : and ' but .... what should Ido?
elif:
notelse if:
. That's just the way python works.