fork download
  1. # your code goes here
  2. a = None
  3. print(a is None)
  4. print(a == None)
Success #stdin #stdout 0.02s 9092KB
stdin
Standard input is empty
stdout
True
True