美文网首页
python 中的参数判定

python 中的参数判定

作者: Aerio_不要坐井观天 | 来源:发表于2018-12-05 09:14 被阅读0次

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

    相关文章

      网友评论

          本文标题:python 中的参数判定

          本文链接:https://www.haomeiwen.com/subject/urxicqtx.html