KwickClips Python · 39 sec · free
Why does my dictionary loop print only names?
Short answer. A plain loop gives only the keys.
How do you loop over keys and values?
Use for key, val in menu.items().
Remember
| Plain loop: keys only |
| items(): key and value |
Your dictionary loop prints only names. Where are the prices? A plain loop gives only the keys. Items gives each key and value together. Here val is short for value. A plain loop gives only keys. Items gives key and value.
This clip is from the full lesson: Dictionaries: Key-Value Pairs, Methods and Programs — 7 minutes, with the tables, the quick answers and the whole lesson in text.
Useful for: CBSE Class 10 Artificial Intelligence (417), CBSE Class 11 Computer Science (083), CBSE Class 11 Computer Science (083), CBSE Class 11 Computer Science Essentials (083)
More KwickClips from this lesson
How do you find a price by name in Python?41 sec
How does Python know whether to add or change?44 sec
Which dictionary method avoids a KeyError?42 sec
How does get() help count letters?40 secVoice-over is AI-generated; the script is written and checked by Kajal Ma'am. Confirm anything you plan around against your official board document. We never ask for a password or an OTP.

