How to make a dictonary programme | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

How to make a dictonary programme

9th Jan 2018, 4:52 PM
Sufiyan
2 Respostas
+ 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