Answers for "how to count the number of times a word appears in a list python"

1

python count how many times a word appears in a string

# credit to Stack Overflow user in source link

sentence.lower().split().count(word)
Posted by: Guest on May-28-2021
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:Atharvademo.txt")
Posted by: Guest on May-17-2021

Code answers related to "how to count the number of times a word appears in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language