2014-02-20 232 views
0

請告訴我如何確保函數printit()每秒執行一次?每x秒運行一次代碼

import threading 

def printit(): 
    print("Hello, World!")  

threading.Timer(1.0, printit).start() 

的問題是, '世界你好' 只出現一次

+0

也:http://stackoverflow.com/questions/510348/how-can-i/-make-A-延時功能於蟒510351#510351 –

回答

2

如何

import time 
while True: 
    time.sleep(1) 
    print ('Hello world')