Answer:
if (x >= -10 and x < 10):
print("In range")
Explanation:
you're missing an x in the if statement. program is getting confused when you run because it doesnt know what to compare after the and if you add x it'll know what to compare.
all this is saying is that if x is greater than or equal to -10 and x is less than 10 its in range!
if (x >= -10 and x< 10):
print("In range")