Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

time in python

import time
thistime = time.time()
# Here's an idea!
def CountTime():
  while(True):
    time.sleep(1)
    print(thistime)
CountTime()
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #time #python
ADD COMMENT
Topic
Name
6+9 =