Computer Science, asked by RUDEGIRL, 1 year ago

What is dictionary in Python?

Answers

Answered by Anonymous
2

Answer:-

Dictionary in Python is an unordered collection of data values, used to store data values like a map, which unlike other Data Types that hold only single value as an element, Dictionary holds key:value pair. ... A Dictionary in Python works similar to the Dictionary in a real world.

Answered by RUHIADAHIR
6

Dictionaries in Python

Dictionaries are Python's implementation of a data structure that is more generally known as an associative array. A dictionary consists of a collection of key-value pairs. Each key-value pair maps the key to its associated value.

hope it helps you

Similar questions