如何在连字符的字符串上使用索引函数?

时间:2017-05-15 15:52:29

标签: python anaconda

我正在开发一个脚本来解析大量的简历,索引函数似乎无法识别使用连字符的标题。

doc = docx.Document("OMALLEY_KIMBERLY.docx");
statements = [para.text.strip() for para in doc.paragraphs
             if para.text.strip() != '']

statements.index("Peer-Reviewed Journal Articles")

以下是追溯。

---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-89-a1e9c115d1c9> in <module>()
     11              if para.text.strip() != '']
     12 
---> 13 statements.index("Peer-Reviewed Journal Articles")

ValueError: 'Peer-Reviewed Journal Articles' is not in list

我尝试了statements.index("Peer\-Reviewed Journal Articles")同样的结果。

0 个答案:

没有答案