我有一个像这样的变量: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 ):
难道没有更好的方法来做到这一点吗?