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

php - Hide output during test execution -

javascript - Migrate custom AngularJS filter from 1.2.28 to 1.4.x -

Update Magento products with multiple images -