Skip to content Skip to sidebar Skip to footer

Extract Parent And Child Node From Python Tree

I am using nltk's Tree data structure.Below is the sample nltk.Tree. (S (S (ADVP (RB recently)) (NP (NN someone)) (VP (VBD mentioned) (NP (DT the) (NN wor

Solution 1:

Python code for the same without using eval function and using nltk tree datastructure

sentences = " (S
  (S
(ADVP (RB recently))
(NP (NN someone))
(VP
  (VBD mentioned)
  (NP (DT the) (NN word) (NN malaria))
  (PP (TO to) (NP (PRP me)))))
  (, ,)
  (CC and)
  (IN so)
  (S
    (NP
      (NP (CD one) (JJ whole) (NN flood))
      (PP (IN of) (NP (NNS memories))))
    (VP (VBD came) (S (VP (VBG pouring) (ADVP (RB back))))))
  (. .))"

print list(tails(sentences))


def tails(items, path=()):
for child in items:
    if type(child) is nltk.Tree:
        if child.label() in {".", ","}:  # ignore punctuation
            continue
        for result in tails(child, path + (child.label(),)):
            yield result
    else:
        yield path[-2:]

Post a Comment for "Extract Parent And Child Node From Python Tree"