Simple, self-explanatory code snippets.
l = [1,2,3,4,4,5,5,6,1]
print(set([x for x in l if l.count(x) > 1]))
No comments:
Post a Comment