Answers for "count word per sentence python"

0

count word per sentence python

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")
Posted by: Guest on May-17-2021

Code answers related to "count word per sentence python"

Python Answers by Framework

Browse Popular Code Answers by Language