Answers for "how to get the day and month in python"

3

python date get day

import datetime
dt = datetime.datetime.today()
year = dt.year
month = dt.month
day = dt.day
Posted by: Guest on December-18-2020
8

python get day month year

import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
Posted by: Guest on May-12-2020

Code answers related to "how to get the day and month in python"

Python Answers by Framework

Browse Popular Code Answers by Language