句法分析的常用方法与实战

第一关

from pyhanlp import HanLP
text=input()
# 任务:使用pyhanlp对text进行关键词提取并输出前两个关键词
# ********** Begin *********#
document =text  
print(HanLP.extractKeyword(document, 2))   


# ********** End **********#

第2关

from pyhanlp import HanLP
text=input()
# 任务:使用pyhanlp模块,对text文本进行句法分析并逐行输出结果,以%s --(%s)--> %s格式输出
# ********** Begin *********#
sentence = HanLP.parseDependency(text) # 对 text 进行句法分析
#print(sentence);
#help(HanLP.parseDependency)
for sen in sentence.iterator():
    print("%s --(%s)--> %s"%(sen.LEMMA,sen.DEPREL,sen.HEAD.LEMMA))
    #print("%s --(%s)--> %s",sen.LEMMA,sen.DEPREL,sen.HEAD.LEMMA)
    


#print("%s --(%s)--> %s\n",HEAD.LEMMA)

# ********** End **********#

你可能感兴趣的:(python)