Open In App

Python | TextBlob.word_counts() method

Last Updated : 09 Sep, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of TextBlob.word_counts() method, we can get the word count of a particular word in the sentence by using TextBlob.word_counts() method.
Syntax : TextBlob.word_counts() Return : Return the count of word in a sentence.
Example #1 : In this example we can say that by using TextBlob.word_counts() method, we are able to get the count of word in a sentence. Python3 1=1
# import TextBlob
from textblob import TextBlob

gfg = TextBlob("I am confused sometime, sometime I messed up things.")

# using TextBlob.word_counts() method
gfg = gfg.word_counts['sometime']

print(gfg)
Output :
2
Example #2 : Python3 1=1
# import TextBlob
from textblob import TextBlob

gfg = TextBlob("My name is Khan khan KhaN.")

# using TextBlob.word_counts() method
gfg = gfg.word_counts['khan']

print(gfg)
Output :
3

Next Article
Article Tags :
Practice Tags :

Similar Reads