Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Introducing Dictionaries Iterating and Packing with Dictionaries Recap of Iterating and Packing with Dictionaries

Complete this code so that it will iterate over all the key:value pairs in the student dictionary.

Help plz

1 Answer

volhaka
volhaka
9,837 Points

there is a dictionary method that we can returns list of key, value pairs - items() eg. dict_name.items() so if we want to print key and value for each item in dictionary :

for key, value in dict_name.items():
     print(key)
     print(value)