removing duplicates from list in place code example
Example 1: python remove repeated elements from list
# ----- Create a list with no repeating elements ------ #
mylist = [67, 7, 89, 7, 2, 7]
newlist = []
for i in mylist:
if i not in newlist:
newlist.append(i)
Example 2: python remove duplicates
word = input().split()
for i in word:
if word.count(i) > 1:
word.remove(i)