Skip to content

Commit e80e226

Browse files
committed
update
1 parent 83aa2dd commit e80e226

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

_episodes/01-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ You can run python in various tools. Perhaps the most straightforward is to use
187187
$ python
188188
```
189189
~~~
190-
Python 3.8.5 (default, Sep 4 2020, 02:22:02)
190+
Python 3.8.8 (default, Feb 24 2021, 13:46:16)
191191
[Clang 10.0.0 ] :: Anaconda, Inc. on darwin
192192
Type "help", "copyright", "credits" or "license" for more information.
193193
>>>

_episodes/02-datatypes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ numbers["one"]
280280
Dictionaries work a lot like lists - except that you index them with *keys*.
281281
You can think about a key as a name for or a unique identifier for a set of values
282282
in the dictionary. Keys can only have particular types - they have to be
283-
"hashable". Strings, numeric types, and tuples are acceptable, but lists are not.
283+
"hashable", which means they don't change. Strings, numeric types, and tuples are acceptable, but lists are not.
284284
285285
Here is a dictionary with natural numbers as keys. You access the values associated with each key, by providing the key in `[]`
286286

0 commit comments

Comments
 (0)