我必須列出給定句子中的子句。我正在執行自己的語法規則來解析句子中的從句。我得到的結果是:從python中的句子中提取子句
*************************************************
(S
(CLAUSE
(VP
(VP they/PRP were/VBD delivered/VBN promptly/RB)
and/CC
(VP a/DT very/RB))
(NP (NP good/JJ value/NN) and/CC (NP excellent/NN)))
(CLAUSE
(VP all/DT)
(NP (NP around/IN (NP slipper/NN)) (NP with/IN (NP traction/NN))))
./.)
*************************************************
從上面的結果中,條款應該列出來,在下面的語句中給出結果。
they were delivered promptly and a very good value and excellent
all around slipper with traction.
我使用flatten
和chomsky_normal_form
嘗試,但未能獲得所需的結果。如何列出單條線上的每個條款以擺脫標籤?
請張貼代碼和語法。 – alvas 2014-10-28 07:15:57