Given a list of strings I want to remove the duplicates and original word.
For example:
lst = [\'a\', \'b\', \'c\', \'c\', \'c\', \'d\', \'e\', \'e\']
t = ['a', 'b', 'c', 'c', 'c', 'd', 'e', 'e'] print [a for a in t if t.count(a) == 1]