Answers for "python get current time hour and minute"

0

python datetime now only hour and minute

from datetime import datetime
hour_and_minute = datetime.now().strftime("%H:%M")
# "14:09"
Posted by: Guest on March-19-2021
8

python get current hour

import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
Posted by: Guest on May-12-2020

Code answers related to "python get current time hour and minute"

Python Answers by Framework

Browse Popular Code Answers by Language