我有一个单词列表:
['The', 'president', 'control'...].
我对每个单词都有不同的POS标签。例如:
{The: {DT}, president: {NP}, control: {NP, VB}...}.
现在我需要为语句计算所有可能的组合,例如:
[The_DT, president_NP, control_NP] --> Ist Combination
[The_DT, president_NP, control_VB] --> 2nd Combination
我该怎么办?