So überprüfen Sie, ob ein Wörterbuch in Python leer ist

empty_dict = {}
 
if empty_dict:
    print('Dictionary is not empty!')
else:
    print('Dictionary is empty!')
Glorious Gnat