"dictionaries" explane.. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

"dictionaries" explane..

1st Sep 2016, 3:57 PM
Anu
Anu - avatar
4 Answers
+ 2
In dictionary we store our elements say (1,2,3,4) with a key say {a:1, b:2, c:3, d:4}. So, the key 'a' is used to access element 1 or it is used to check if element '1' exists in your data structure or not etc. Try thinking of dictionaries as a 'Colleg ID card:Student' relation. All the best!
1st Sep 2016, 5:24 PM
Simran Madhok
+ 1
similar to list but useing 'key' instead number for indexing
1st Sep 2016, 5:12 PM
beauty1234
0
thanks friends.
2nd Sep 2016, 2:37 PM
Anu
Anu - avatar
0
key value pair are exists in dictionary. for example we have a key 'name' and its value is 'sumit' , or like key 'age' and its value 20. in dictionary you can defined it as dict = {'name':'sumit','age':20} you can access the values using keys dict['age']
22nd Sep 2016, 3:04 PM
Sumit Patidar
Sumit Patidar - avatar