Inser Elemts menjadi satu set di Python

list1 = [1, 1, 2, 3, 4, 4, 5]
set1 = set(list1)
set1.add(6)			# gets inserted in the set if it does not already exist
set1.add(5)			# gets ignored as it already exists in the set
Uptight Unicorn