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

Popular posts from this blog

qt - Using float or double for own QML classes -

Create Outlook appointment via C# .Net -

ios - Swift Array Resetting Itself -