Thread: Timing issue
View Single Post
  #6  
Old 04-07-2008, 03:40 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Have a look at the Python documentation for the time module. It describes all the functionality you need. In this case you would use the time.localtime() function:
Code:
time.strftime('%H:%M:%S',time.localtime())
Reply With Quote