Would python intrepet this:
if hour < 7 and hour > 0 or hour > 20 and hour < 23:
the same as
if 7 > hour > 0 or 23 > hour > 20 (this one is just the usual mathematical inequality)
if not then what should I write to tell python this inequality?