0
Not sure why I'm getting Syntax Error
I am getting syntax error in line 5. I am probably making a beginner mistake somewhere but I can not see it. https://code.sololearn.com/c2G9zVZ31bDe/?ref=app
2 ответов
+ 11
*a value is missing before "and":
elif age >= 12 and <= 17 :
*Correct:
elif age >= 12 and age <= 17 :
+ 6
the lines should compare it twice, sperately.
you have: elif age >= 12 and <= 17 :
should be: elif age >= 12 and age <= 17 :