this is how my text file looks like
8888888888
6777777667
212123344121212
14141414141414141414
111121222224
68888888812
66666663314
what is the approach i can do ?please help
I am trying this code`
list1=content.New_Pair def unique(list1):
# intilize a null list
unique_list = []
# traverse for all elements
for x in content.New_Pair:
# check if exists in unique_list or not
if x not in unique_list:
unique_list.append(x)
# print list
for x in unique_list:
print(x)
`