Answers for "remove duplicate tuples from list python"

7

python remove duplicates from a list

# HOW TO REMOVE DUPLICATES FROM A LIST:
# 1) CREATE A LIST
my_list = [1, 2, 3, 4, 5, 5, 5, 1]
# 2) CONVERT IT TO A SET AND THEN BACK INTO A LIST
my_list = list(set(my_list))
# 3) DONE! 
print(my_list) #WILL PRINT: [1, 2, 3, 4, 5]
Posted by: Guest on November-02-2020
1

remove duplicates from tuple python

my_tuple = (1, 2, 2, 5, 1, 3, 5, 3)
my_tupele = tuple(set(my_tuple))
print(my_tupele)
Posted by: Guest on July-29-2021

Code answers related to "remove duplicate tuples from list python"

Python Answers by Framework

Browse Popular Code Answers by Language