Python Programming - Data Types - Discussion

Discussion Forum : Data Types - General Questions (Q.No. 5)
5.
What is the data type of the following value: {"a": 1, "b": 2, "c": 3}
String
List
Tuple
Dictionary
Answer: Option
Explanation:
{"a": 1, "b": 2, "c": 3} is a dictionary in Python. Dictionaries are used to store key-value pairs, where each key maps to a corresponding value.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.