Skip to content
Merged
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
3 changes: 3 additions & 0 deletions _episodes/01-short-introduction-to-Python.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,9 @@ 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 information does the built-in function `len()` provide?
Does it provide the same information on both tuples and lists?
Does the `help()` function confirm this?
{: .challenge}


Expand Down