If you convert all your dates to datetime.date, you can write the following:
if start <= date <= end:
print("in between")
else:
print("No!")
If you convert all your dates to datetime.date, you can write the following:
if start <= date <= end:
print("in between")
else:
print("No!")