I'm new to python and Django. I've been playing around with the Django polls tutorial and all is going well but I'm still getting used to the syntax.
What does this line read in plain English?
return now - datetime.timedelta(days=1) <= self.pub_date <= now
The part I'm having trouble with is the <= operator. I'm aware this usually means less than or equal to but I've never seen them being used in succession such as above.