Skip to content
Advertisement

how to print first name, last name and birthday in python?

I’m trying to print first name, last name and birthday, so how i could do it?

Here’s my code:

JavaScript

Output should be like this:

last_name first_name birthday
Cawthorn David 1995-08-01

Advertisement

Answer

First add parse_dates to read_csv for datetimes:

JavaScript

Then if need filter by minimal birthday and columns in list use DataFrame.loc:

JavaScript

For all columns use boolean indexing:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement