Answers for "get this year 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

Python Answers by Framework

Browse Popular Code Answers by Language