标签:pytho span als 判断 好的 错误 字符 col 字符串
判断是否为None的情况
if not x
if x is None
if not x is None
if x is not None`是最好的写法,清晰,不会出现错误,以后坚持使用这种写法。
使用if not x这种写法的前提是:必须清楚x等于None, False, 空字符串" ", 0, 空列表[], 空字典{}, 空元组()时对你的判断没有影响才行
标签:pytho span als 判断 好的 错误 字符 col 字符串
原文地址:https://www.cnblogs.com/sineik/p/9359232.html