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

python中字符串的真值

python中字符串的真值

ibeautiful 2019-10-12 10:50:39
if <boolean> :   # do this布尔值必须为True或False。那么为什么if "poi":   print "yes"输出:是我不明白为什么要打印,因为“ poi”是对还是错。
查看完整描述

3 回答

?
慕姐4208626

TA贡献1852条经验 获得超7个赞

在python中,除空字符串外的任何字符串默认为 True



if "MyString":

    # this will print foo

    print("foo")


if "":

    # this will NOT print foo

    print("foo")


查看完整回答
反对 回复 2019-10-12
  • 3 回答
  • 0 关注
  • 542 浏览
慕课专栏
更多

添加回答

举报

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