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 975bbb2 commit 5f2f5faCopy full SHA for 5f2f5fa
_episodes/09-errors.md
@@ -60,16 +60,16 @@ favorite_ice_cream()
60
---------------------------------------------------------------------------
61
IndexError Traceback (most recent call last)
62
<ipython-input-1-70bd89baa4df> in <module>()
63
- 6 print(ice_creams[3])
64
- 7
65
-----> 8 favorite_ice_cream()
+ 9 print(ice_creams[3])
+ 10
+----> 11 favorite_ice_cream()
66
67
<ipython-input-1-70bd89baa4df> in favorite_ice_cream()
68
- 4 'vanilla', 'strawberry'
69
- 5 ]
70
-----> 6 print(ice_creams[3])
71
72
- 8 favorite_ice_cream()
+ 7 'strawberry'
+ 8 ]
+----> 9 print(ice_creams[3])
+ 11 favorite_ice_cream()
73
74
IndexError: list index out of range
75
~~~
0 commit comments