get current hours and minute python code example
Example 1: get the current year in python
import datetime
now = datetime.datetime.now().year
print(now)
Example 2: 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