Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Gudkat committed Oct 25, 2024
1 parent 967b1b9 commit 99af87a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/part-5/3-dictionary.md
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ NB: Please don't formulate each spelled out number by hand. Figure out how you c
Dictionaries are very useful for structuring data. The following code will create a dictionary which contains some personal data:

```python
person = {"name": "Pippa Python", "height": 154, "weight": 61, "age:" 44}
person = {"name": "Pippa Python", "height": 154, "weight": 61, "age": 44}
```

This means that we have here a person named Pippa Python, whose height is 154, weight 61, and age 44. The same information could just as well be stored in variables:
Expand Down

0 comments on commit 99af87a

Please sign in to comment.