Чтобы проверить погоду, словарь пуст или нет в Python

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