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

python循环输出十以内偶数求老司机指点!

python循环输出十以内偶数求老司机指点!

慕勒3428872 2019-08-25 23:18:35
以下代码为什么不能输出十以内的偶数呢?什么结果都没有count=0whilecount
查看完整描述

2 回答

?
暮色呼如

TA贡献1853条经验 获得超9个赞

count=0
whilecount<=9:
if(count%2!=0):
#continue跳过了count+=1
#进了这里count就没有变化的机会了
#于是死循环
continue
else:
print(count)
count+=1
print('done')
                            
查看完整回答
反对 回复 2019-08-25
?
慕侠2389804

TA贡献1719条经验 获得超6个赞

根本就不需要continue关键字。你的代码的正确逻辑应该是这样:
>>>count=0
>>>whilecount<=9:
...ifcount%2==0:
...print(count)
...count+=1
...
0
2
4
6
8
但是这一点也不pythonic,python程序员通常不用while关键字:
>>>foriinrange(0,10):
...ifi%2==0:
...print(i)
...
0
2
4
6
8
但是python程序员还是觉得上述代码太累赘,他们会这样:
>>>foriinrange(0,10,2):
...print(i)
...
0
2
4
6
8
                            
查看完整回答
反对 回复 2019-08-25
  • 2 回答
  • 0 关注
  • 842 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信