I want to know about timer in Python.
Suppose i have a code snippet something like:
def abc() print \'Hi\' print \'Hello\' print \'Hai\' <
You should look into time.sleep(). For example:
time.sleep()
for i in xrange(5): abc() time.sleep(3)
That will print your lines 5 times with a 3 second delay between.