Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python Current time using time module

import time

t = time.localtime()
current_time = time.strftime("%H:%M:%S", t)
print(current_time)
 
PREVIOUS NEXT
Tagged: #Python #Current #time #time #module
ADD COMMENT
Topic
Name
9+9 =