标签: python
当我尝试检查NoneType时:
if data is None:
我也试过这个:
if data == None:
我收到以下错误:
TypeError: 'NoneType' object is unsubscriptable
我是否错误地检查了NoneType?