随笔分类 -  脚本

摘要:[root@node206 code]# cat test.py num=0 while num<10: num+=1 if num==3: continue print (num) [root@node206 code]# python3 test.py 1 2 4 5 6 7 8 9 10 ## 阅读全文
posted @ 2019-09-15 00:38 黑色月牙 阅读(306) 评论(0) 推荐(0)