I have a list and want delete repeat same items.
list1 = [ 10-31, 19-45, 19-45, 64-01, 10-31, 19-45, 16-17 ]
And try get this:
list2 = [ 10-31, 19-45, 64-01, 10-31, 19-45,16-17]
I already looked list(OrderedDict.fromkeys(data1))
- method, but that's not what I want.