博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在Python中怎么表达True
阅读量:6555 次
发布时间:2019-06-24

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

在Python中怎么表达True

 

为False的几种情况

  • 0为False,其他所有数值皆为True
  • 空串("")为False,其他所有字符串皆为True
  • 空list([])为False,其他所有list皆为True
  • 空tuple(())为False,其他所有tuple皆为True
  • 空dict({})为False,其他所有dcit皆为True

杜绝的几种写法

if i==0:if str==“”:if list == None:if set is None:if dict == None:

优雅写法

对应上面的例子

if not i:if not str:if not list:if not set:if not dicte:
 
 
from:

转载于:https://www.cnblogs.com/Vito2008/p/4929207.html

你可能感兴趣的文章
26 计算用户输入的内容中索引为奇数并且对应的元素为数字的个数的两种方法...
查看>>
iOS 色值 转换 干货
查看>>
利用Python实现12306爬虫--查票
查看>>
day7——Python的帮助
查看>>
js-键盘回车搜索enter
查看>>
学习编译原理的心得
查看>>
安装pip和pylint
查看>>
POJ 3974 Palindrome
查看>>
fix issue on ImportError: libGeoIP.so.1
查看>>
linear-gradient线性渐变
查看>>
POJ 2965 The Pilots Brothers' refrigerator【枚举】
查看>>
我的天$删除注册表$安装mysql最后一步不能启动服务的解决办法
查看>>
Set Matrix Zeroes
查看>>
循环——批量处理数据
查看>>
高精度双目立体视觉测量
查看>>
Flatty Shadow图标自动产生器——在线生成各种扁平化 ICON
查看>>
org.tinygroup.beancontainer-IOC、AOP框架
查看>>
QRCode 二维码开源DLL
查看>>
异步消息处理机制Handler
查看>>
设计题
查看>>