Python控制语句之其他语句

  • 在Python循环语句中,复杂的条件可能会嵌套break,continue或者pass
  • break用于终止整个循环语句
  • continue用于跳出当前循环,并且执行下一次循环
  • pass语句用于占位,不做任何操作,保持结构的完整性
  • 列表推导式用于构建新的数据序列
s=0
for i in range(1,101):
    s+=i
    if i>=10:
        break
count=0
while count<10:
    count+=1
    if count%3==0:
        print(count)
        break  # count=3时,终止循环
    else:
        print(count)

# 输出 1 2 3


count=0
while count<10:
    count+=1
    if count%3==0:
        print(count)
        continue  # count=3,6,9时,跳过循环
    else:
        print(count)
# 输出 1 2 4 5 7 8


count=0
while count<10:
    count+=1
    if count%3==0:
        print(count)
        pass  
    else:
        print(count)
# 输出 1 2 3 4 5 6 7 8 9
squares=[]

for x in range(10):
    squares.append(x**2)

[x**2 for x in range(10)]
vec=[-9,8,7,6,8,-4,4]
[x**0.5 for x in vec if x>0]
a=[6,7,9,-6,5,4,'one']
total=0

for i in a:
    try:
        total+=i
    except:
        pass  # 当加‘one’时,会捕获到异常,然后会执行except下面的语句

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

seraph呀

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值