在Python中怎么表达True 为False的⼏种情况
0为False,其他所有数值皆为True
空串("")为False,其他所有字符串皆为Truepython怎么读的
空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:
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论