Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _episodes/01-short-introduction-to-Python.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@ a_list = [1, 2, 3]
> 1. What happens when you execute `a_list[1] = 5`?
> 2. What happens when you execute `a_tuple[2] = 5`?
> 3. What does `type(a_tuple)` tell you about `a_tuple`?
> 4. What if you wanted to find the number of items (or length) of a tuple or list? Hint: Use the built-in function len()
>
{: .challenge}

Expand Down