:green_book: py可读性指标 使用流行的可读性公式和指标对文本的可读性进行评分,包括: , , , , , , Linsear Write , SMOG和SPACHE 。 :green_book: 安装 pip install py-readability-metrics python -m nltk.downloader punkt 用法 from readability import Readability r = Readability ( text ) r . flesch_kincaid () r . flesch () r . gunning_fog () r . coleman_liau () r . dale_chall () r . ari () r . linsear_write () r . smog () r . spache () *注意: text必须包含> = 100个字*
1