我是Python新手,對列表和元組有一些疑問。 我有一個由句子和wordclass-tags組成的列表。這是我列表中的一個元素:Python中的元組列表
[('It', 'PPS'), ('says', 'VBZ'), ('that', 'CS'), ('``', '``'), ('in', 'IN'), ('the', 'AT'), ('event', 'NN'), ('Congress', 'NP'), ('does', 'DOZ'), ('provide', 'VB'), ('this', 'DT'), ('increase', 'NN'), ('in', 'IN'), ('federal', 'JJ'), ('funds', 'NNS'), ("''", "''"), (',', ','), ('the', 'AT'), ('State', 'NN-TL'), ('Board', 'NN-TL'), ('of', 'IN-TL'), ('Education', 'NN-TL'), ('should', 'MD'), ('be', 'BE'), ('directed', 'VBN'), ('to', 'TO'), ('``', '``'), ('give', 'VB'), ('priority', 'NN'), ("''", "''"), ('to', 'IN'), ('teacher', 'NN'), ('pay', 'NN'), ('raises', 'NNS'), ('.', '.')]
正如您所看到的,每個單詞都有一個wordclass-tag。如何在我的列表中搜索word + wordclass之後? F.ex.如果我想看看這個元素是否包含附加到wordclass-tag「JJ」的單詞「federal」?
非常感謝幫助
我很難搞清楚你真的在這裏嘗試了什麼 - 但它看起來像一個不同的數據結構會讓你的生活變得更容易。也許是一個擁有清單的詞典?那麼你可以將單詞映射到單詞列表中? – mgilson 2013-02-18 18:56:56