python3.x 簡單的for語句循環案例

python簡單完成一個for循環而且使用break及continue並查看其效果 #!/usr/bin/env python # Auther by wq for i in range(0,10): if i <5: print("loop",i) else: continue #跳出本次循環進入下一個循環 print("hehe..
相關文章
相關標籤/搜索