# create a dictionary
my_dict = {'apple': 2, 'banana': 3, 'orange': 4}
# print the original dictionary
print("Original Dictionary:", my_dict)
# remove an item from the dictionary
del my_dict['banana']
# print the updated dictionary
print("Updated Dictionary:", my_dict)Original Dictionary: {'apple': 2, 'banana': 3, 'orange': 4}
Updated Dictionary: {'apple': 2, 'orange': 4}my_dict` that contains three key-value pairs. We then print the original dictionary using the `print()` function.banana' from the dictionary using the `del` keyword.