Python:在系列中寻找子字符串

时间:2019-06-11 15:35:28

标签: python python-3.x pandas substring list-comprehension

我正在尝试识别包含子字符串“ energy”的pandas系列(descriptions_list)中的所有元素。我一直在尝试通过以下方式编写列表理解:

descriptions_list 
energy = 'energy'

[i for i, j in enumerate(descriptions_list) if 'energy' in j]

即使使用短序列对象(或仅分析0:4 * 10 ** 4中的descriptions_lists)也可以,但对于较长序列,我经常会遇到以下错误:“类型'int'的参数不可迭代”。当在j $条件下删除$ if'energy'时,或者在'ba'{ {1}}。

为什么它只适用于短篇小说?我怎样才能使它适用于更长篇小说?

0 个答案:

没有答案