QuestenaPractice that shows what to review next
Question 38

In Python source, what type of object is created by an empty pair of brace characters?

  1. An empty set
  2. An empty dictionaryCorrect answer
  3. An empty list
  4. A syntax error

Explanation

The empty brace literal is reserved for a dictionary, even though nonempty set literals also use braces. An empty set must be constructed explicitly, so treating the empty notation as a set selects the wrong built-in type.

Continue with this test

Start practice
Question 38: In Python source, what type of object is created by an… · Python Fundamentals · Questena