gpt4 book ai didi

python - 检查多个变量中的无

转载 作者:行者123 更新时间:2023-11-28 21:21:58 25 4
gpt4 key购买 nike

a = 'asd'
b = 'dsa'

if a is not None and b is not None:
pass

有什么方法可以改进这段代码吗?

还试过:

if not (a is None, b is None):

if not (a, b is None):

两者都不起作用。

最佳答案

使用内置函数 all()

a = 'asd'
b = 'dsa'

print all([a,b])
#True

如果一个或多个变量是None,它会产生False


所以如果你想在某些条件下使用它,代码将是:

a = 'asd'
b = 'dsa'

if all([a,b]):
print 'All True!!!!'
#All True!!!!

关于python - 检查多个变量中的无,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20357096/

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