Repeat word in python unlimited times -
for example want word repeat unlimited times keep repeating
then how should be?
import time time.sleep(0.6) print(" hello world")
use infinite loop
while(1): print "hello world"
this run forever
Comments
Post a Comment