hisan wrote:

> Hi All,
> I need to call a function for evry 10 secs
> how can i achieve this in python


import time
while True:
    time.sleep(10)
    function()



-- 
Steven

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to