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

python - jinja2: TemplateSyntaxError: expected token ',', got 'string' -

Qt4: how to send QString inside a struct via QSharedMemory -

node.js - NodeJS remote terminal to Dropbear OpenWRT-Server -