Python Dictionaries: {key: value} Pairs #17

  Рет қаралды 80,349

Programiz

Programiz

Күн бұрын

Пікірлер: 49
@programizstudios
@programizstudios 2 жыл бұрын
🔥 Learn Python with a more hands-on experience with Programiz PRO-interactive lessons, quizzes & challenges. Try Programiz PRO: bit.ly/right-python
@DanKolis
@DanKolis 3 жыл бұрын
This guy is basically a perfect presenter. Exactly correctly pace, examples just frame the issue perfectly )... Thanks Dude
@cduran1983
@cduran1983 3 жыл бұрын
Same here! Just found it! And am staying for good!!! Love how he presents the content!!
@ranjeet5806
@ranjeet5806 3 жыл бұрын
answers: 1.peak 2.whole dictionary with added key as terrain: "land" 3.mountain: peak , terrain: land
@kaustavsaha6005
@kaustavsaha6005 Жыл бұрын
Most Standerd channel for python 🖤
@jmie5
@jmie5 4 жыл бұрын
Learning Python isn't so bad, but trying to put it all together is cruel and unusual hell. Just hell for me. Sir, I am so glad I found your videos. You're cheerful, have a well thought-out lesson plan, are easy to understand, and I can actually see the entire code as you type it out. And it's free to boot. Subbed.
@programizstudios
@programizstudios 4 жыл бұрын
Glad our course helped you. Stay tuned for more Python videos from us.
@rhyswells8725
@rhyswells8725 4 жыл бұрын
I am impressed by the quality here, keep it up.
@lo2246
@lo2246 3 жыл бұрын
indian guys are our light
@muzammilsyed3838
@muzammilsyed3838 4 жыл бұрын
Sir, I am a python student. Programiz web site and KZbin channel has helped me lot in learning python in lock down but recently Python 3.9.0 was released. So, my question is, has python 3.9.0 changed any important components of python. If any components are changed please make a video toturial about that.
@jalalkarimov5754
@jalalkarimov5754 3 жыл бұрын
Thank you Punit, your videos and explanations help a lot to learn Python.
@carlsdarvin
@carlsdarvin Жыл бұрын
The ("age") key at 1:49 is not a tuple, it is a string actually, right?
@joyceadhiambo9977
@joyceadhiambo9977 2 жыл бұрын
this is a perfect course, keep it up
@JBerry0129
@JBerry0129 Жыл бұрын
great presenting. easy to understand. thanks!
@garyr4418
@garyr4418 3 жыл бұрын
Thanks brother. Nice explanation. Stay blessed.
@cduran1983
@cduran1983 3 жыл бұрын
Awesome channel! Gonna do my python learning from all of your content!! Thanks for sharing! Also, I installed the app!! Thanks again!!
@anony-mous8881
@anony-mous8881 4 жыл бұрын
If I just want to print out a particular key... and not all the keys.. how do you do this? appreciate the help!
@ganneruvaramroshinichitti5407
@ganneruvaramroshinichitti5407 3 жыл бұрын
super explanation sir thank you soo much ....
@hubertcombomarketing2693
@hubertcombomarketing2693 3 жыл бұрын
There must be a comma after the first element to make a tuple ("age",).
@muditkaura6-c94
@muditkaura6-c94 3 жыл бұрын
Thank You ,All doubts are clear.
@furkancelebio
@furkancelebio 2 жыл бұрын
thanks my dear friend
@mohammadabdullahaalforhad1375
@mohammadabdullahaalforhad1375 2 жыл бұрын
thanks for sharing triks
@joyceadhiambo9977
@joyceadhiambo9977 2 жыл бұрын
1. peak 2. {'mountain': 'peak', 'forest': 'jungle', 'terrain': 'land'} 3. {'mountain': 'peak', 'terrain': 'land'}
@ignaciosaavedra7115
@ignaciosaavedra7115 3 жыл бұрын
1:59 acording to w3school, thats not a single item tuple, you missed the comma after the object of the tuple.
@sandipansarkar9211
@sandipansarkar9211 3 жыл бұрын
great explanation
@kushalkumar8173
@kushalkumar8173 2 жыл бұрын
how to pair keys from excel data for multiple rows and columns?
@saifurrehman6756
@saifurrehman6756 4 жыл бұрын
I wonder, after checking, why .remove is not working in the case of a dictionary?
@majidalich2947
@majidalich2947 2 жыл бұрын
1. Peak 2. {'Mountain': 'Peak', 'Forest': 'Jungle', 'terrain': 'land'} 3. {'Mountain': 'Peak', 'terrain': 'land'}
@waltg6216
@waltg6216 4 жыл бұрын
I was curious about all the excess bracketing and I ran the following: person1 = {"name":"Linus","age":21} person1["hobbies"] = "philately" # Instead of ["hobbies"]=["philately"] print(person1) I got the following output: >>> %Run 17_PythonDictionariesToStoreKeyValuePairs.py {'name': 'Linus', 'age': 21, 'hobbies': 'philately'} Is there any particular reason to bracket the "hobbies" argument? The output certainly looks cleaner this way.
@Islamicduniya78633
@Islamicduniya78633 Жыл бұрын
Iam not able to run the dictionary in your compiler
@Islamicduniya78633
@Islamicduniya78633 Жыл бұрын
Please reply
@sureshvarthya2250
@sureshvarthya2250 2 жыл бұрын
1."peak" 2.{"mountain": "peak", "forest": "jungle", "terrain": "land"} 3.{"mountain": "peak", "terrain": "land"}
@shrinivasbutla5093
@shrinivasbutla5093 3 жыл бұрын
how to write python program drop empty Items from a given Dictionary
@EmereEmmanuel
@EmereEmmanuel 2 ай бұрын
my answers 1. {"peak"} 2. {"mountain" : "peak", "forest" : "jungle", "terrain" : "land"} 3. {"mountain" : "peak", "terrain" : "land"}
@fang_shi_tong
@fang_shi_tong 3 жыл бұрын
Between 0.05 and 0.11, the instructor refers to strings as a compound data type. This is not correct. I hope this is just a blip because I have found his explanations to be beautifully clear till now.
@muditkaura6-c94
@muditkaura6-c94 3 жыл бұрын
I have a doubt in get method.
@ipranjalrai
@ipranjalrai 4 жыл бұрын
Good job Sir, keep going. Everything is good in the video just try to start with some more basic concept and Sir kindly try to smile a bit so, that it can be more interactive and friendlier video it will help you people only.. (hope you mind it positively)
@iamuniq1081
@iamuniq1081 2 жыл бұрын
You explain the dictionary in 8 min op !
@MohdIrshad-ko6bd
@MohdIrshad-ko6bd 2 жыл бұрын
sir ji ek question btai
@swarnaakshayastudio
@swarnaakshayastudio Жыл бұрын
1. peak 2. {‘mountain’: ‘peak’, ‘forest’: ‘jungle’, ‘terrains’: ‘land’} 3. {‘mountain’: ‘peak’, ‘terrains’: ‘land’} Is the answer..✅
@aboobakarmohammed1242
@aboobakarmohammed1242 9 ай бұрын
NO WAY....the captions were shownig "whatsup guys i am punished from programmers" in the beggining of the vid 🤣🤣🤣🤣
@letstry2854
@letstry2854 4 жыл бұрын
Thanks you sir
@ashrithvicky5366
@ashrithvicky5366 4 жыл бұрын
Thanks sir
@iyerzzzzz
@iyerzzzzz 3 жыл бұрын
I am getting a person1 not defined error
@ndvorsky
@ndvorsky 3 жыл бұрын
So now I know what a dictionary does, why woul I use it?
@ujjwalbasnet3968
@ujjwalbasnet3968 2 жыл бұрын
are u nepali
@_scars_
@_scars_ 2 жыл бұрын
bro look like he is programmed to teach
@pooja5085
@pooja5085 4 жыл бұрын
Thank you sir
Python Sets (When to use it?) #18
14:32
Programiz
Рет қаралды 47 М.
Lists & Tuples in Python (How to Use Them Effectively?) #15
19:29
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
She made herself an ear of corn from his marmalade candies🌽🌽🌽
00:38
Valja & Maxim Family
Рет қаралды 18 МЛН
10 Important Python Concepts In 20 Minutes
18:49
Indently
Рет қаралды 375 М.
Nested Dictionaries in Python | Python Tutorials for Beginners #lec69
22:33
Jenny's Lectures CS IT
Рет қаралды 43 М.
Python dictionaries are easy 📙
8:06
Bro Code
Рет қаралды 273 М.
Pydantic Tutorial • Solving Python's Biggest Problem
11:07
pixegami
Рет қаралды 292 М.
Python Inheritance (Make Your Code Modular!) #22
14:52
Programiz
Рет қаралды 58 М.
Dictionary Comprehension - Create Complex Data Structures Step by Step
21:58
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,2 МЛН
5 Useful Dunder Methods In Python
16:10
Indently
Рет қаралды 65 М.
Python - Accessing Nested Dictionary Keys
24:48
Academind
Рет қаралды 187 М.