python判断字典是否为空

原文链接

my_dict = {"A":1}

if not bool(my_dict):
    print("Dictionary is empty")
else:
    print("Not empty")

你可能感兴趣的:(python,python)