共计 187 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用 type()
函数来判断一个变量的类型。如果变量是 None
类型,即 NoneType
,type()
函数将返回NoneType
。例如:
x = None
if type(x) == type(None):
print("x is NoneType")
else:
print("x is not NoneType")
输出结果为:
x is NoneType
丸趣 TV 网 – 提供最优质的资源集合!
正文完