Answers for "python get quarter for month"

3

python get current month

Use:

from datetime import datetime
today = datetime.today()
datem = datetime(today.year, today.month, 1)
I assume you want the first of the month.
Posted by: Guest on March-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language