Skip to content

Commit d960e39

Browse files
NPalopolimaxim-belkin
authored andcommitted
guide.md: update questions in a challenge on tuples
Pull Request:#333
1 parent 2bbeca3 commit d960e39

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

_extras/guide.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ installation. Otherwise, it will tell you that the system is good to go and read
3131

3232
### Tuples Challenges
3333

34-
* What happens when you type `a_tuple[2] = 5` vs `a_list[1] = 5`?
34+
* What happens when you execute `a_list[1] = 5`?
35+
* What happens when you execute `a_tuple[2] = 5`?
3536

3637
As a tuple is immutable, it does not support item assignment. Elements in a list can be altered individually.
3738

38-
* Type `type(a_tuple)` into the Python interpreter - what is the object type?
39+
* What does `type(a_tuple)` tell you about `a_tuple`?
3940

4041
`tuple`
4142

0 commit comments

Comments
 (0)