📌  相关文章
📜  count_lines 计算每个句子的单词. - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:09.779000             🧑  作者: Mango

代码示例1
import nltk
#nltk.download('punkt')
from nltk.tokenize import sent_tokenize

def count_lines(file):
    count=0
    myfile=open(file,"r")
    string = ""

    for line in myfile:
        string+=line  
        print(string)

    number_of_sentences = sent_tokenize(string)

    for w in number_of_sentences:
        count+=1
        print("Sentence ",count,"has ",len(w),"words")

count_lines("D:\Atharva\demo.txt")