Python| TextBlob.word_counts() 方法
借助TextBlob.word_counts()
方法,我们可以使用TextBlob.word_counts()
方法获取句子中特定单词的字数。
Syntax : TextBlob.word_counts()
Return : Return the count of word in a sentence.
示例 #1:
在这个例子中,我们可以说通过使用TextBlob.word_counts()
方法,我们可以得到一个句子中的单词数。
# 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)
输出 :
示例 #2:
# 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)
输出 :