Answers for "time (current)"

0

time (current)

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