Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

dimas andhana
5,543 PointsPlease help, I still don't get how to answer only keys or value on this dictionary
It suppose to be like student.items():
But it won't work? can some one tell me where I'm worng at?
2 Answers

Steven Parker
216,878 PointsThe "items" method returns both keys and values together as tuples.
If you only want one or the other, there is a "keys" method and a "values" method.

Reggie Nora
Python Development Techdegree Student 2,638 PointsAnnnndd that was never mentioned in the lesson. I guess that was something we were supposed to find online. Lol.

Joel Dundee
1,645 PointsYeah I had looked everywhere for it, relistened to the video, checked previous cheat sheets and re-read a lot of the lessons before i realized it simply wasn't mentioned. Glad to have found my answer here though. At his level is it just .items, .keys and .values that we should be worried about or is there more things we should already know?
Keegan Swanson
1,339 PointsKeegan Swanson
1,339 PointsI still don't get it. Do I use "keys" or "values" as my answer? Also is this for Task 2? Or a different one?
Steven Parker
216,878 PointsSteven Parker
216,878 PointsThey are both answers, but to different questions.