在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
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: C#怎么调用python脚本