gpt4 book ai didi

python - 如何使用逗号分隔变量?

转载 作者:太空宇宙 更新时间:2023-11-03 13:20:53 26 4
gpt4 key购买 nike

我有一个这样的变量:ignore = val1,val2

但我不清楚如何将这些值作为单独的值使用。

目前(据我所知)我需要像下面的代码一样对它们进行硬编码:

if (not Path.find("val1") > -1 ) and (not Path.find("val2") > -1 ):
etc

现在我想给它添加测试,我又需要像这样硬编码:

if (not Path.find("val1") > -1 ) and (not Path.find("val2") > -1 ) and (not Path.find("test") > -1 ):

没有更好的方法吗?

最佳答案

如果 ignore 是值名称的元组:

if all(Path.find(v) <= -1 for v in ignore):

这样做的好处是一旦第一个条件为假就停止。就像您的硬编码示例一样。

关于python - 如何使用逗号分隔变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14378739/

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