[ad_1]
I have column in Python Pandas DataFrame like below (“object” format):
col1
----
01.06.2020
11.08.2019
25.11.2018
And I need to check whether:
- the number of days is in a range 1-31
- the number of months is in a range 1-12
How can I check that in Python Pandas?
[ad_2]