I have an array of dates that should be between 09-2021 and 09-2022. How do I check if every single one of the dates is in the range?
e.g Below are some of the dates within the array
calendar202109['date'].dt.date.unique()
array([datetime.date(2021, 9, 16), datetime.date(2021, 9, 17),
datetime.date(2021, 9, 18), datetime.date(2021, 9, 19),
datetime.date(2022, 9, 15)], dtype=object)