python 每隔一段时间执行某些语句

import threading

def hello():
    print("hello, world")
    t = threading.Timer(10.0, hello)
    t.start() 
print("Hi")
i=10
i=i+20
print(i)
hello()

 

你可能感兴趣的:(python)