Initial commit
This commit is contained in:
5
python/Sets/Python program to clear a set.py
Normal file
5
python/Sets/Python program to clear a set.py
Normal file
@@ -0,0 +1,5 @@
|
||||
setp = set(["Red", "Green"])
|
||||
setq = setp.copy()
|
||||
print(setq)
|
||||
setq.clear()
|
||||
print(setq)
|
||||
Reference in New Issue
Block a user