Teachers Stats

teachers_dict = {‘Jason Seifer’: [‘Ruby Foundations’, ‘Ruby on Rails Forms’, ‘Technology Foundations’], ‘Kenneth Love’: [‘Python Basics’, ‘Python Collections’]} def most_classes(teachers_dict): […]

Read More
Comments Off on Teachers Stats

Dictionary Unpacking & Iteration

Unpacking Considering dictionaries, the format( ) function can be used several ways. Regular Way >>> my_string = “Hi! My name […]

Read More
Comments Off on Dictionary Unpacking & Iteration

Dictionary Basics

Introduction >>> my_dict = {‘name’: ‘Kenneth’} >>> my_dict {‘name’: ‘Kenneth’} Key Order of keys can change over time. This is why […]

Read More
Comments Off on Dictionary Basics