How to access the key-value pairs from a dictionary using index in Python

1 Answer

0 votes
dict = {} 

dict['a'] = 0
dict['b'] = 1
dict['c'] = 2
dict['d'] = 3

values = list(dict.items())
print(values[2])
print(values[2][0])
print(values[2][1])





'''
run:

('c', 2)
c
2

'''

 



answered Apr 11, 2021 by avibootz

Related questions

...