gpt4 book ai didi

python - 如何显示列表中字符串的重复项

转载 作者:太空宇宙 更新时间:2023-11-03 21:20:27 25 4
gpt4 key购买 nike

IDE: PyCharm
Python 3.4

一开始。我算不上 Python 语言的基础学生。我想学习新东西。 Lipsum_word_counter。我有问题。我正在编写程序,检查复制到 file.txt 的简单“lorem ipsum”中重复了多少个单词(以及哪些单词)

有人可以回答如何只打印重复一次或多次的字符串吗?

我当前的程序看起来:

with open("3_paragraph_of_lorem.txt", "r") as opened_file:
list_of_lines = []
list_of_words = []
for line in opened_file:
list_of_lines.append(line)
split_line = line.split()
for word in split_line:
list_of_words.append(word)
split_word = word.split()
testListDict = {}
for item in list_of_words:
try:
testListDict[item] += 1
except:
testListDict[item] = 1
print(testListDict)

请不要生我的气,这是我的第一篇文章。我用的是搜索。

最佳答案

您已经拥有所需的信息,只需迭代结果字典即可:

for word, number in testListDict.items():
if number > 1:
print(word)

关于python - 如何显示列表中字符串的重复项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54307002/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com