Answers for "remove duplicate element from list in python"

2

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
Posted by: Guest on September-22-2020
2

python remove duplicates from list

''' we can convert the list to set and then back to list'''
a=[1,1,2,3,4,5,6,6,7]
'''b=(list(set(a))) # will have only unique elemenets'''
Posted by: Guest on September-29-2020

Code answers related to "remove duplicate element from list in python"

Python Answers by Framework

Browse Popular Code Answers by Language