how to calculate age from date of birth pandas code example
Example: convert birth date to age pandas
(pd.to_datetime('today').year-pd.to_datetime('1956-07-01').year)
Out[83]: 61
(pd.to_datetime('today').year-pd.to_datetime('1956-07-01').year)
Out[83]: 61