[Python]跳出For或while迴圈-使用break或 continue 暫停

文、意如

if (條件) : break #跳出For或while迴圈
if (條件) : continue #暫停一次,繼續

 

for x in range(1,10):
	print(x)
	if(x==5):
 		break

 

for x in range(1,10):
	if(x==5):
 		continue
	print(x)

 

 

 

Yiru@Studio - 關於我 - 意如