Computer Science, asked by maninderkaur2375, 2 months ago

a python dictionary of a key and value is called a _________ .​

Answers

Answered by venkatsaiteja022
0

Explanation:

associative array

Definition and Usage. The keys() method returns a view object. The view object contains the keys of the dictionary, as a list. The view object will reflect any changes done to the dictionary,

Answered by ruhi3031
0

Answer:

associative array

Explanation:

The methods dict. keys() and dict. values() return lists of the keys or values explicitly. There's also an items() which returns a list of (key, value) tuples, which is the most efficient way to examine all the key value data in the dictionary.

Similar questions