我基本上從事解析的樹,並試圖註釋主導空類別(空節點註解)樹節點。AttributeError的:「ParentedTree」對象有沒有屬性「標籤」
我已經定義爲低於recurvsive功能,但我得到的錯誤是「AttributeError的:‘ParentedTree’對象有沒有屬性‘標籤’。」
def annotateTraceNodes(node):
numChildren = len(node);
numNone=0;
for child in node:
if isinstance(child,Tree):
annotateTraceNodes(child);
if(numChildren==0 or child.label().endswith("-NONE-")):
numNone+=1;
if(numChildren==numNone):
print "setting the label";
node.set_label(node.label()+"-NONE-");
有在此代碼稱爲'ParentedTree' – 2014-10-29 04:12:34
很抱歉的混亂&錯字錯誤沒有對象。我糾正了錯字。我如何使事情發揮作用? – Linguist 2014-10-29 04:18:33
行末不需要分號。這不是C/C++。 – IanAuld 2014-10-29 04:26:44