python编写程序,把一个英文句子中的单词倒置,标点符号不倒置
时间: 2023-06-05 08:47:31 浏览: 310
采用python程序设计语言,进行分词,再去掉停用词和标点符号等,生成文档的词典,接着根据词典和文档内容生成词项的倒排记录表
可以使用字符串的replace()方法来实现。假设英文句子为sentence,需要替换的单词为word,代码如下:
sentence = 'This is a test sentence.'
word = 'test'
new_sentence = sentence.replace(word, '.'*len(word))
print(new_sentence)
输出结果为:
This is a ..... sentence.
阅读全文