python 中的参数判定

在处理python中的某个字段之前,最好先判断一下参数的类型,一般而言,我们会认为参数有空值和非空值两种,但还有另外一种可能为NoneType, 它表示没有这个参数,与为空誓不相同的。
例如
if t is None:
print "t is nonetype"
elif t:
print "t is not null"
else:
print "t is null"

你可能感兴趣的:(python 中的参数判定)