def almost_there(n):
list=[x for x in range(90,111)]
list_1=[i for i in range(190,211)]
if n in list or list_1:
return True
else:
return False
print(almost_there(1))
>>> True
Why is it giving true even when the value is 1?