为了账号安全,请及时绑定邮箱和手机立即绑定

python的while循环输出数字

标签:
Python

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

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消