We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bbeca3 commit d960e39Copy full SHA for d960e39
1 file changed
_extras/guide.md
@@ -31,11 +31,12 @@ installation. Otherwise, it will tell you that the system is good to go and read
31
32
### Tuples Challenges
33
34
-* What happens when you type `a_tuple[2] = 5` vs `a_list[1] = 5`?
+* What happens when you execute `a_list[1] = 5`?
35
+* What happens when you execute `a_tuple[2] = 5`?
36
37
As a tuple is immutable, it does not support item assignment. Elements in a list can be altered individually.
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`?
40
41
`tuple`
42
0 commit comments