Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
Source by w3schoolsrus.github.io #
 
PREVIOUS NEXT
Tagged: #remove #duplicates #function #python
ADD COMMENT
Topic
Name
8+1 =