一般检查len(list)是否为0就可判断 但在python中空的list本身就返回false 所以可以直接写成 if listA: #不为空 else: #listA为[] 元组、字符串、字典都可以如此判断