remove fron set python code example
Example 1: remove element form set in python
list1 = {1,2,3,4}
list1.remove(4)
print(list)
# {1,2,3}
Example 2: remove an item from a set python
list.discard(item)
list1 = {1,2,3,4}
list1.remove(4)
print(list)
# {1,2,3}
list.discard(item)