Python-检查字符串是否在数组的所有元素中

时间:2018-12-07 18:10:53

标签: python pandas

我有一个pandas数据框,其中的一列包含以逗号分隔的字符串数组。

我想检查数组中的所有元素是否都包含特定的字符串。例如:

string = 'close'
array = ['close',',,,,,,,,,,,,close,,,,,,,,,sub,','sub']

这应该是错误的,因为第三个元素不包含“ close”;而

string = 'close'
array = ['close',',,,,,,,,,,,,close,,,,,,,,,sub,','sub, close']

应为true,因为所有元素都包含字符串。

值得一提的是,我的数据框有250多个列和3M +行,因此我正在寻找最适合性能的解决方案

谢谢!

0 个答案:

没有答案