Answers for "python set day of date to 1"

0

python set day of date to 1

from datetime import datetime

your_date = datetime.strptime('26 June 2021', '%d %b %Y')
# Using the .replace() method:
newdatetime = your_date.replace(day=1)
# 2021-06-01 00:00:00
Posted by: Guest on July-16-2021

Python Answers by Framework

Browse Popular Code Answers by Language