Answers for "add a set to an existing set python"

2

inser elemts into a set in 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
Posted by: Guest on July-24-2020

Code answers related to "add a set to an existing set python"

Python Answers by Framework

Browse Popular Code Answers by Language