How To Use Dictionaries In Python (Python Tutorial #8)

preview_player
Показать описание


Рекомендации по теме
Комментарии
Автор

My friends: "how did you learn python"
Me: 4:33

kbarracuda
Автор

As my old schoolteacher used to say:
"Google is the best professor"

samuraijack
Автор

Thank You! YK. The best Python tutorials for beginners I've ever seen. So easy to understand.

joyayou
Автор

I honestly wish I had you as a teacher in high school, you explain things very well!!

haileyr
Автор

Literally the best course on python I ve ever seen. Please could you continue?

anvegar
Автор

My favorite python YouTube author so far!

tabbypp
Автор

It's been 50 days we didn't get any new video in this awesome series
Please resume the series as soon as possible.

jumaedtanbeen
Автор

for key, value in d.items():
print("key", key, "value", value)

PShepuu
Автор

so easy to understand! Best I have seen

kokoetteumoren
Автор

YK, Great job on this entire series!!! You put this series together perfectly to get me going. Thank you. Looking forward to future examples.

sopkotm
Автор

FUN FACT : I SHARED HIS CHANNEL IN MY CLASS GROUP

terminator_x.
Автор

You could also think of it as a menu in a restaurant where you put an item at the left and price at the right.

gumbo
Автор

"To test for yourself, change the word key to poop ."

ioanniskopadis
Автор

I am loving the series I run your videos in conjunction with my class to keep practicing at the basics. Dont stop the series man its very informative and good information. Its always good to practice the basics for repetition once a day 30 minutes.

vindicatedafi
Автор

You are very Down to Earth and Thanks for the Climax with the idea of "How to get out of problems by Googling"

nilanjanbhattacharyya
Автор

you could also go with:
for key, value in d.items():
print(key, ":", value)

mohammaddavoudi
Автор

# How to make an actual dictionary
d["Incredulous"] = "unwilling or unable to believe something"

d["Extraordinary"] = "not normal, really extra"
for key, value in d.items():
print("word")
print(key)
print("definition")
print(value)
print("")

laurasteven
Автор

If anyone finds it useful another way I found was.
d = {"George":24, "Tom": 32, "Jenny":20, "10" :100}
for key, value in d.items():
print(key, '->', value)


>>>>
George -> 24
Tom -> 32
Jenny-> 20
10 -> 100

kanghumcho
Автор

enjoying such amazing teaching during quarantine! thanks a lot.

paramshah
Автор

iam happy to find ur channel for python learning

mdrafi