gpt4 book ai didi

python - 返回变量的真实性而不是它的值?

转载 作者:太空狗 更新时间:2023-10-30 00:35:54 26 4
gpt4 key购买 nike

考虑这段代码:

test_string = 'not empty'

if test_string:
return True
else:
return False

我知道我可以构造一个条件表达式来做到这一点:

return True if test_string else False

但是,当我宁愿只返回 boolean 值时,我不喜欢测试 boolean 值是真还是假。我该如何返回它的真实性?

最佳答案

您可以使用 bool :

return bool(test_string)

演示:

>>> bool('abc')
True
>>> bool('')
False
>>>

关于python - 返回变量的真实性而不是它的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27284465/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com