I have list consisting with replacements and I want to do two things:
- remove duplicates
- remove all elements by a specific criteria, to be exact I want to remove all elements bigger than a certain value.
I figured I can use filter for 2 and than use set to achieve 1
something like
list(set(filter(lambda x:x<C, l)))
is there a better/more pythonic/more efficient way?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…