Python3 字符串、字典、列表等判空方法总结 发表于 2019-06-03 更新于 2022-05-25 分类于 技术文章 , Python Python3 字符串、字典、列表、元组、集合等判空方法总结。 一、使用 if x 判空空字符“”,空元组 (),空列表 [],空字典 {},空集合 (),None,0 使用if x 判断,均为False; 非空判断if not x 二、判断是否为Nonex = Noneif x is None: print("x is True")else: print("x is False") 打印结果:x is True 只有 x = None 时,if x is None 为True;其他任何值,if x is None 均为 False 非None判断x = Noneif not x is None: print("x is True")else: print("x is False") 打印结果:x is False