我正在做一个循环并设置一个变量,但我需要知道它是否为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'>