私はPythonに比較的慣れていないので、次のようなことをしたいと思っています。
if value x == any value in list y:
write x
これは関数で動作するため、特定の基準に一致するソリューションのみが生成時にcsvに書き込まれます
私はPythonに比較的慣れていないので、次のようなことをしたいと思っています。
if value x == any value in list y:
write x
これは関数で動作するため、特定の基準に一致するソリューションのみが生成時にcsvに書き込まれます
>>> x = 8
>>> if x in (1, 2, 3, 5, 8, 13, 21, 34, 55):
print('x is an early Fibonacci number')
x is an early Fibonacci number
in構文を使用できます。
if x in ["a", "b", "c"]
... do stuff
また、xの出現回数を気にする場合は、countを使用できます。
if y.count(x) == 1
... do stuff
これはうまくいきますか?
x = somevalue
y = somelist
if x in y:
print x #not sure if this is what you mean by 'write'