python 如何判断字典是否为空?

发布时间:2019-09-05 07:07:16编辑:auto阅读(7080)

    在python里,{},[],(),等都等价于False!

    if dict:
        print 'not Empty'

     

关键字