Answers for "Year, month day hour, minute second format python"

22

python year month day hour minute second

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

get month day year 12 hour time format python

import time

# get current time
date_time = time.strftime("%b %d, %Y %-I%p")

#the above outputs: May 27, 2021 7PM
Posted by: Guest on October-14-2021

Code answers related to "Year, month day hour, minute second format python"

Python Answers by Framework

Browse Popular Code Answers by Language