Issue
I'd like to filter a df
by date. But I would like all the values with any date before today's date (python).
For example from the table below, I'd like the rows that have a date before today's date (i.e. row 1 to row 3).
ID | date |
---|---|
1 | 2022-03-25 06:00:00 |
2 | 2022-04-25 06:00:00 |
3 | 2022-05-25 06:00:00 |
4 | 2022-08-25 06:00:00 |
Thanks
Solution
You can try this?
from datetime import datetime
df[df['date'] < datetime.now()]
Output:
ID date
0 1 2022-03-25 06:00:00
1 2 2022-04-25 06:00:00
2 3 2022-05-25 06:00:00
Answered By - perpetualstudent
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.