How to make a dictonary programme | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to make a dictonary programme

9th Jan 2018, 4:52 PM
Sufiyan
2 Answers
+ 5
dicts = {} keys = range(4) values = ["Hi", "I", "am", "Gawen"] for i in keys: dicts[i] = values[i] print(dicts) you can build dictionary like this for more information refer this link https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2450/?ref=app https://www.sololearn.com/learn/Python/2451/?ref=app
9th Jan 2018, 5:21 PM
GAWEN STEASY
GAWEN STEASY - avatar
0
Here I have made dictionary kind of structure using hashtag technique. https://code.sololearn.com/c9BW2ERJy5VZ/?ref=app
24th May 2020, 11:45 PM
$ยข๐Žโ‚น๐”ญ!๐จ๐“
$ยข๐Žโ‚น๐”ญ!๐จ๐“ - avatar