4 lines
79 B
Python
4 lines
79 B
Python
|
my_dict = {}
|
||
|
|
||
|
if not bool(my_dict):
|
||
|
print("Dictionary is empty")
|