Answers for "hour in python"

11

get the current year in python

import datetime
now = datetime.datetime.now().year
print(now)
Posted by: Guest on May-12-2020
5

get hour python

import datetime
now = datetime.datetime.now()
print now.year, now.month, now.day, now.hour, now.minute, now.second
# 2015 5 6 8 53 40
Posted by: Guest on May-04-2020
22

python hour 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
1

date.month date time

import datetime
dt = datetime.datetime.today()
print dt.year
# Output: 2016

print dt.month
# Output: 8

print dt.day
# Output: 22
Posted by: Guest on July-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language