Write a Python program to remove an item from a set if it is present in the set. code example
Example 1: remove an item from a set python
# it doesn't raise error if element doesn't exits in set
thisset = {1, 2,3}
thisset.discard(3)
print(thisset)
Example 2: remove an item from a set python
list.discard(item)