有一段英文文本,其中有单词连续重复了2次,编写程序检查重复的单词并只保留一个。用python写代码
时间: 2024-05-16 14:12:20 浏览: 136
这份代码中包括探究矩阵和统计单词出现的次数
以下是Python的代码:
```
text = "This is is a test test sentence."
words = text.split()
unique_words = []
for word in words:
if word not in unique_words:
unique_words.append(word)
new_text = " ".join(unique_words)
print(new_text)
```
输出为:"This is a test sentence.",其中重复的单词已经被删除了。
阅读全文