Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to remove days from datetime.date object

Let’s say, we have this date 2022-01-01. How can I remove days part from it to get 2022-01?

I’ve already tried using strptime '{:%Y-%m}'.format(dt.strptime(currentDate, '%Y-%m-%d')) but it gives me this error TypeError: strptime() argument 1 must be str, not datetime.date

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Use strftime method:

import datetime as dt

date_object = dt.datetime(2022, 1, 1)

output = date_object.strftime('%Y-%m')
print(output) # 2022-01
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading