How to remove a specific element or data from the dictionary? Suppose I have this dictionary
data = {
'name': 'Instagram',
'follower_count': 346,
'description': 'Social media platform',
'country': 'United States'
}
and I don't want the element 'follower_count': 346
to be printed. What should be the operation?