码迷,mamicode.com
首页 > 其他好文 > 详细

第二章练习题8b

时间:2018-12-05 10:24:32      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:+=   style   使用   ==   color   code   while 循环   tin   练习   

使用 while 循环实现输出 1,2,3,4,5, 7,8,9, 11,12;

 

 

 

a = 0
while a<13:
    a += 1
    if a == 10:
        continue
    print(a)

 

第二章练习题8b

标签:+=   style   使用   ==   color   code   while 循环   tin   练习   

原文地址:https://www.cnblogs.com/riling/p/10068830.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!