python文本怎么按照,和。分句但是分句完仍然显示,和。
时间: 2023-04-06 10:03:10 浏览: 130
python实现中文文本分句的例子
5星 · 资源好评率100%
您可以使用Python中的正则表达式来实现这个功能。具体来说,您可以使用re.split()函数来将文本按照逗号和句号分割成句子。以下是一个示例代码:
import re
text = "This is a sentence. This is another sentence, and this is a third sentence."
sentences = re.split(r'[,.]', text)
print(sentences)
输出结果为:
['This is a sentence', ' This is another sentence', ' and this is a third sentence', '']
请注意,最后一个元素是一个空字符串,因为最后一个句子后面没有逗号或句号。您可以使用strip()函数来删除这个空字符串。
阅读全文