用python写出求英文文本中句子数量的代码
以下是Python代码:
import nltk
# 下载nltk库需要的数据
nltk.download('punkt')
# 输入英文文本
text = input("请输入英文文本:")
# 使用nltk库的sent_tokenize函数将文本分割成句子
sentences = nltk.sent_tokenize(text)
# 输出句子数量
print("文本中有{}个句子。".format(len(sentences)))
运行结果:
请输入英文文本:Hello World. How are you? I'm fine, thank you.
文本中有3个句子。
原文地址: https://www.cveoy.top/t/topic/hh3U 著作权归作者所有。请勿转载和采集!