Initial commit
This commit is contained in:
5
python/Sets/Python program to remove item(s) from set.py
Normal file
5
python/Sets/Python program to remove item(s) from set.py
Normal file
@@ -0,0 +1,5 @@
|
||||
num_set = set([0, 1, 3, 4, 5])
|
||||
num_set.pop()
|
||||
print(num_set)
|
||||
num_set.pop()
|
||||
print(num_set)
|
||||
Reference in New Issue
Block a user