标签: python
想知道以下哪一项是检查object是否为null的正确方法。例如,假设存在以下对象:
class MyClass: x = 5 pl = MyClass()
其中哪些是正确的检查?
if pl : print(pl.x)
或
if pl is not None: print(pl.x)