add to set python code example

Example 1: add element in set python

thisset = {"apple", "banana", "cherry"}

thisset.add("orange")

print(thisset)

Example 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

Example 3: get length of set python

# Create a set
seta = {5,10,3,15,2,20}
# Or
setb = set([5, 10, 3, 15, 2, 20])

# Find the length use len()
print(len(setb))

Example 4: set() python

#help set the array in python in order