Answers for "how to get just the hour and minutes with the time module python"

3

how to get the current date hour minute month year in python

########################################################################
import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
########################################################################
from datetime import *
now = datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
########################################################################
Posted by: Guest on September-03-2020
0

how to get date in numbers using python

from datetime import datetime
shortDate = datetime.today().strftime('%Y-%m-%d')
Posted by: Guest on May-27-2020

Code answers related to "how to get just the hour and minutes with the time module python"

Python Answers by Framework

Browse Popular Code Answers by Language