`
is_summer = True
print("Values 1-12 correlate to the months of the year")
while is_summer == True:
_month = int(input("Enter the month of the year: "))
if _month == 4 or 5 or 6 or 7 or 8:
is_summer = int(input("It is summer, what is the temperature?: "))
if is_summer in range(60,101):
print("The squirrels are playing")
else:
print("The squirells are not playing")
elif _month == 1 or 2 or 3 or 9 or 10 or 11 or 12:
is_summer = int(input("It is winter, what is the temperature?: "))
if is_summer in range(60,91):
print("The squirrels are playing")
else:
print("The squirrels are not playing")
`
My code will not go down to the elif statement if i enter 1,2,3,9,10,11,or 12. Are my nested if statements done incorrectly, or is it something else?
inoperator.