I could get a little guided about dictionary in python I still don't get to the lesson but it became necessary for me to learn! | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

I could get a little guided about dictionary in python I still don't get to the lesson but it became necessary for me to learn!

Help

3rd Dec 2020, 3:37 PM
Wendy Abigail Aro Morales
Wendy Abigail Aro Morales - avatar
4 ответов
+ 3
Wendy Abigail Aro Morales, First of all, you should name the programming language by creating a tag. The best way to get things understand is to go through the tutorial. You can try with the demonstrated samples, modify them and see what will be the result. Please keep in mind, that sololearn is made that you can learn by yourself. If you get stuck somewhere, come back and place a well formed question here. Thanks for understanding!
3rd Dec 2020, 4:01 PM
Lothar
Lothar - avatar
+ 1
Hi Wendy Abigail Aro Morales, I found this video helpful... https://youtu.be/daefaLgNkw0 You'll get the basics in just 10 minutes.
3rd Dec 2020, 3:54 PM
Rahul Hemdev
Rahul Hemdev - avatar
+ 1
Thank you Uvu
3rd Dec 2020, 4:08 PM
Wendy Abigail Aro Morales
Wendy Abigail Aro Morales - avatar
+ 1
Dictionaries are used to store data values in key:value pairs. A dictionary is a collection which is unordered, changeable and does not allow duplicates. Dictionaries are written with curly brackets {} , and have keys and values: [[ Note: Python dictionaries are equals to javascript object ]] Example: dictonaries = { "name":"Sabbir", "age": 17 } print(" My name is :",dictonaries["name"]," \n","My age is : ",dictonaries["age"])
3rd Dec 2020, 4:11 PM
🇧🇩 𝚂𝚊𝚋𝚋𝚒𝚛 𝙷𝚘𝚜𝚜𝚊𝚒𝚗 🇧🇩
🇧🇩 𝚂𝚊𝚋𝚋𝚒𝚛 𝙷𝚘𝚜𝚜𝚊𝚒𝚗 🇧🇩 - avatar