检查对象是否为空的正确方法?

时间:2019-03-27 17:34:09

标签: python

想知道以下哪一项是检查object是否为null的正确方法。例如,假设存在以下对象:

class MyClass:   
   x = 5
pl = MyClass()

其中哪些是正确的检查?

if pl :
  print(pl.x)

if pl is not None:
  print(pl.x)

0 个答案:

没有答案