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 trialNick Meier
1,905 PointsHow do I access a list that is a value of a dictionary?
The values in this dictionary are lists which contain multiple items, and I want to return the whole number of indivdual values inside the lists, not the number of the lists. Can anyone help?
# The dictionary will look something like:
# {'Andrew Chalkley': ['jQuery Basics', 'Node.js Basics'],
# 'Kenneth Love': ['Python Basics', 'Python Collections']}
#
# Each key will be a Teacher and the value will be a list of courses.
#
# Your code goes below here.
def num_teachers(dict):
return len(dict.keys())
def num_courses(dict):
return len(dict.values())
1 Answer
Dave StSomeWhere
19,870 PointsAre you looking for something like this?
dict = {
'Andrew Chalkley': ['jQuery Basics', 'Node.js Basics'],
'Kenneth Love': ['Python Basics', 'Python Collections', 'test another entry', 'test last entry']}
for key, value in dict.items():
print(key + " has " + str(len(value)) + " entries in the list ")
# outputs
Andrew Chalkley has 2 entries in the list
Kenneth Love has 4 entries in the list