Answers for "python list remove duplicates set"

36

python remove duplicates from list

mylist = ["a", "b", "b", "c", "a"]
mylist = sorted(set(mylist))
print(mylist)
Posted by: Guest on October-26-2020
0

python set remove duplicate elements

new_menu = ['Hawaiian', 'Margherita', 'Mushroom', 'Prosciutto', 'Meat Feast', 'Hawaiian', 'Bacon', 'Black Olive Special', 'Sausage', 'Sausage']

final_new_menu = list(set(new_menu))

print(final_new_men)

#output = ['Hawaiian', 'Margherita', 'Mushroom', 'Prosciutto', 'Meat Feast', 'Bacon', 'Black Olive Special', 'Sausage']
Posted by: Guest on May-20-2021

Code answers related to "python list remove duplicates set"

Python Answers by Framework

Browse Popular Code Answers by Language