Home »
MCQs »
Python MCQs
Python Dictionary is used to store the data in a ___ format
18. Python Dictionary is used to store the data in a ___ format.
- Key value pair
- Group value pair
- Select value pair
- None of the mentioned above
Answer: A) Key value pair
Explanation:
Python Dictionary is used to store the data in a key-value pair format, which is similar to that of a database. The dictionary data type in Python is capable of simulating the real-world data arrangement in which a specific value exists for a specific key when the key is specified. It is the data-structure that can be changed. Each element of the dictionary is defined as follows: keys and values.