Python检查类型为无类型

时间:2018-08-01 00:45:52

标签: python-3.x

我正在做一个循环并设置一个变量,但我需要知道它是否为NoneType。

get_background = wb.colour_map[bgc]
if isinstance(get_background, None):
    #do stuff

获取`typeerror:isinstance()参数2必须是类型或类型的元组

if type(get_background) is 'NoneType':
    #do stuff.

这只是被跳过,我的代码被炸掉了。 如何检查get_background是否属于NoneType

print(type(get_background))
<class 'Nonetype'>

0 个答案:

没有答案