QuestenaPractice that shows what to review next
Question 9

For Python's `None` value, which statements are true? Select all that apply.

  1. Its exact type is `NoneType`.Correct answer
  2. Every use of `None` designates the same object.Correct answer
  3. It is the same value as the empty string.
  4. A fresh `None` object is created each time it is written.

Explanation

`None` is the sole instance of `NoneType`, and all uses of it refer to the same singleton object. An empty string and numeric zero are separate values that may be falsy, but neither is another spelling of `None`.

Continue with this test

Start practice
Question 9: For Python's `None` value, which statements are true?… · Python Fundamentals · Questena