博客
关于我
第4.8节 三目运算、del和pass语句
阅读量:60 次
发布时间:2019-02-25

本文共 678 字,大约阅读时间需要 2 分钟。

??????

Python??????C???????????????????????????????????????????????????

???????????

?????????? if ?? else ????????

????True??????????????????????????False????????????????

???

print('value>100') if k>100 else print('value<=100')

?k??100??????value>100?????????value<=100??

??del??

?Python??del????????????????????????????del?????????????????????????????????Python?????????????????????????????????????????????

???

a = 10b = adel a

?????????a????b???b????????????

??pass??

pass???????????????????????????

  • ?????????????
  • ???????????????????????????
  • ???

    for i in range(10):    if i % 2 == 0:        print(f"???{i}")    pass    else:        print(f"???{i}")

    ???????pass????????????????

    转载地址:http://kim.baihongyu.com/

    你可能感兴趣的文章
    PAT (Basic Level) Practice 乙级1031-1040
    查看>>
    PAT (Basic Level) Practice 乙级1041-1045
    查看>>
    SparkSql的元数据
    查看>>
    PAT (Basic Level) Practice 乙级1051-1055
    查看>>
    PAT (Basic Level) Practise - 写出这个数
    查看>>
    PAT 1027 Colors in Mars
    查看>>
    PAT 1127 ZigZagging on a Tree[难]
    查看>>
    PAT 2-07. 素因子分解(20)
    查看>>
    SparkSQL学习03-数据读取与存储
    查看>>
    PAT L2-012. 关于堆的判断
    查看>>
    PAT Spell It Right [非常简单]
    查看>>
    PAT-1044. Shopping in Mars (25)
    查看>>
    PAT-乙级-1040 有几个PAT
    查看>>
    Spring组件扫描配置
    查看>>
    PAT1093 Count PAT's (25)(逻辑题)
    查看>>
    PATA1038题解(需复习)
    查看>>
    Patching Array
    查看>>
    Spring源码学习(二):Spring容器之prepareContext和BeanFactoryPostProcessor的介绍
    查看>>
    PatchMatchStereo可能会需要的Rectification
    查看>>
    Path does not chain with any of the trust anchors
    查看>>