View Single Post
  #2  
Old 09-18-2007, 03:57 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Have a look at the time module that comes with Python. For example, this should print out the time in Hour:Minute:Second format:
Code:
import time
print time.strftime('%H:%M:%S',time.localtime())
Also, please post Vizard related questions in the Vizard forum next time.
Reply With Quote