继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

python的while循环输出数字

函数式编程
关注TA
已关注
手记 220
粉丝 14
获赞 30

a. 使用while循环实现输出2-3+4-5+6...+100 的和

# 定义计算结果
aaa = ''
bbb = 1
#for i in range(1, 100):
i = 1
while i < 100:
    i += 1
    aaa += str(i)
    if i % 2 == 0:
        aaa += '-'
        bbb += i
    else:
        aaa += '+'
        bbb -= i
print('字符串输出: \r\n %s \r\n计算结果: \r\n %s' %(aaa.rstrip('-'),bbb))


b. 使用 while 循环实现输出 1,2,3,4,5, 7,8,9, 11,12 使用 while 循环实现输出 1-100 内的所有奇数
##输出1--12

count=1
while count <= 12:
    if count == 6 or count == 10:
        count += 1
        continue #跳出本次循环
    print(count)
    count+=1

##   输出1--100之间的所有奇数

count=0
while count <= 100:
    if count%2 == 1:
        print(count)
    count+=1
e. 使用 while 循环实现输出 1-100 内的所有偶数

##   输出1--100之间的所有奇数

count=0
while count <= 100:
    if count%2 == 0:
        print(count)
    count+=1

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP