Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果有类似的文件
1 1 5 3 3 45 45 87 6 6 4
我只想存储不重复的值,例如,
5 87 4
任何意见表示赞赏。
从您的评论来看,您似乎无法读取文件并获取数据。您可以为此使用以下代码:
x=open("filename.txt").readlines()
然后你可以使用你的代码:
print [key for key, group in groupby(x) if len(list(group)) < 2]