1樓:阿發他哥哥
while 1==1:
print 'hello'
#這裡執行不到
print '******x'
2樓:匿名使用者
while true:
print 'hello'
#這裡執行不到
print '******x'
3樓:匿名使用者
x = 0
while true:
x += 1
print(f',',end='')
4樓:
import timewhile true:_____dosomething_____time.sleep(60)
5樓:匿名使用者
考慮多執行緒,開乙個執行緒來無限累加。
6樓:匿名使用者
def loop(init):
now = init
while 1:
yield now
now+=1
for i in loop(0):
print i
7樓:可靠的我心我在
你在迴圈裡面 加個 暫停的語句 就可以了
import time
x=0while true:
x=x+1
print x
time.sleep(5)
python如何跳出無限迴圈並執行下函式
import time import os import schedule import pyautogui def rec record os.startfile c program files x86 evcapture evcapture.exe schedule.every day.at 1...
易語言怎麼無限迴圈,易語言 計次迴圈
一 在子程式中使用 判斷迴圈首 或 迴圈判斷首 引數置為真,造成死迴圈,如 判斷迴圈首 真 要執行的 放在這裡。判斷迴圈尾 二 子程式呼叫自身,如 版本2.子程式子程式1 這裡寫上要執行的 子程式1 無限迴圈沒什麼實用意義,會造成程式的假死。前面幾位雖說沒用易語言的時鐘元件,實際上卻是用api建立了...
css3實現動畫效果,怎樣使他無限迴圈動下去
animation test 2s infinite linear infinite就是迴圈.css3 實現動畫效果,怎樣使他無限迴圈動下去 animation mymove 5s infinite 在animation後面加上infinite就可以無限迴圈,另外還可以做反向迴圈使用animatio...