Answers for "python current time and date"

0

how to get current time in python

import time

t = time.localtime()
current_time = time.strftime("%H:%M:%S", t)
print(current_time)
Posted by: Guest on February-02-2021

Code answers related to "python current time and date"

Python Answers by Framework

Browse Popular Code Answers by Language