Python Exercise: Check a dictionary is empty or not
Python dictionary: Exercise-18 with Solution
Write a Python program to check a dictionary is empty or not.
Sample Solution:-
Python Code:
my_dict = {}
if not bool(my_dict):
print("Dictionary is empty")
Sample Output:
Dictionary is empty
Visualize Python code execution:
The following tool visualize what the computer is doing step-by-step as it executes the said program:
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to remove duplicates from Dictionary.
Next: Write a Python program to combine two dictionary adding values for common keys.
What is the difficulty level of this exercise?
Inviting useful, relevant, well-written and unique guest posts
- New Content published on w3resource :
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- React - JavaScript Library
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework