Answers for "python time print time now"

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

Python Answers by Framework

Browse Popular Code Answers by Language