1.
Programs using elementary data items, lists, dictionaries and tuples
# Python3 program for explaining
# use of list, tuple, set and
# dictionary
# Lists
l = []
# Adding Element into list
[Link](5)
[Link](10)
print("Adding 5 and 10 in list", l)
# Popping Elements from list
[Link]()
print("Popped one element from list", l)
print()
# Set
s = set()
# Adding element into set
[Link](5)
[Link](10)
print("Adding 5 and 10 in set", s)
# Removing element from set
[Link](5)
print("Removing 5 from set", s)
print()
# Tuple
t = tuple(l)
# Tuples are immutable
print("Tuple", t)
print()
# Dictionary
d = {}
# Adding the key value pair
d[5] = "Five"
d[10] = "Ten"
print("Dictionary", d)
# Removing key-value pair
del d[10]
print("Dictionary", d)
Sample Output:
Adding 5 and 10 in list [5, 10]
Popped one element from list [5]
Adding 5 and 10 in set {10, 5}
Removing 5 from set {10}
Tuple (5,)
Dictionary {5: 'Five', 10: 'Ten'}
Dictionary {5: 'Five'}