标签: python repeat
例如,我希望这个词重复无限次 不断重复
那应该是怎么回事?
import time time.sleep(0.6) print(" Hello World")
答案 0 :(得分:1)
使用无限循环
while(1): print "Hello world"
这将永远运行
答案 1 :(得分:1)
for python 3
while True: print("Hello World")