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

第二章练习题8c

时间:2018-12-05 10:22:53      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:col   color   span   code   int   +=   style   while 循环   练习题   

使用while 循环输出100-50,从大到小,如100,99,98...,到50时再从0循环输出到50,然后结束;

 

 

a = 101
while a>50:
    a -= 1
    print(a)
a = -1
while a<50:
    a += 1
    print(a)

 

第二章练习题8c

标签:col   color   span   code   int   +=   style   while 循环   练习题   

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

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