a python set removes duplicates code example
Example 1: remove duplicates function python
def remove_dupiclates(list_):
new_list = []
for a in list_:
if a not in new_list:
new_list.append(a)
return new_list
Example 2: python remove duplicates
word = input().split()
for i in word:
if word.count(i) > 1:
word.remove(i)