Open cahicks opened 6 years ago
I was having trouble remembering which part of a dictionary is a key is and what part is a value when I was doing the homework. Here's an example dict = {'name':'Jack', 'age': 26}
the keys are the categories and the values are the specific things. So in this example, 'name' and 'age' are keys, and 'Jack' and '26' are the values.
I was having trouble remembering which part of a dictionary is a key is and what part is a value when I was doing the homework. Here's an example dict = {'name':'Jack', 'age': 26}