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

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

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

node.js - On Gitbash - Bower : ENOGIT git is not installed or not in the PATH -