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

Kannan A
Kannan A
1,291 Points

In a for statement, why cannot we use object.items to call only for a key or for a value?

In this code, student = {'name': 'Craig', 'major': 'Computer Science', 'credits': 36}

for key in student.items(): print(key)

using student.items is incorrect. Could someone please walk me thorugh as to why it is not right?

Thanks in advance.

1 Answer

Daniel Jong
Daniel Jong
11,071 Points

Hi, the items() method is used to retrieve both keys and values, so using the keys() method is the solution to get only the key in the dictionary

Hope this helps!