Computer Science

To create a new dictionary with no items:

  1. Dict
  2. dict()
  3. d1=[]
  4. None of these

Python Dictionaries

1 Like

Answer

dict()

Reason — The function dict() is used to create a new dictionary with no items.

Answered By

3 Likes


Related Questions