How to do an if to check if a date is between two dates. Python [closed]

I need to check if a certain date is between the month of February, but I can't use year, only month and day.

How can i do this using if and else in python?

Back to Top