Answers for "day of year from python datetime"

22

python day from date

import datetime
date = '2021-05-21 11:22:03'
datem = datetime.datetime.strptime(date, "%Y-%m-%d %H:%M:%S")
print(datem.day)        # 25
print(datem.month)      # 5
print(datem.year)       # 2021
print(datem.hour)       # 11
print(datem.minute)     # 22
print(datem.second)     # 3
Posted by: Guest on May-21-2021
0

time date year python

import datetime

now = datetime.datetime.now()

print(str(now.day).zfill(2)+'-'+str(now.month).zfill(2)+'-'+str(now.year)+' '+str(now.hour).zfill(2)+':'+str(now.minute).zfill(2)+':'+str(now.second).zfill(2))
# Output
# 24-05-2021 17:09:45
Posted by: Guest on May-24-2021

Code answers related to "day of year from python datetime"

Python Answers by Framework

Browse Popular Code Answers by Language