Skip to content

Commit c9c6275

Browse files
committed
Correcting a variable name as suggested in text
1 parent 7c1a424 commit c9c6275

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Chapter01/Exercise20/Exercise20.ipynb

+4-4
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,12 @@
117117
],
118118
"source": [
119119
"for i in range(3, 0, -1):\n",
120-
" print(i)"
120+
" print(i)"
121121
]
122122
},
123123
{
124124
"cell_type": "code",
125-
"execution_count": 6,
125+
"execution_count": 1,
126126
"metadata": {},
127127
"outputs": [
128128
{
@@ -149,7 +149,7 @@
149149
],
150150
"source": [
151151
"name = 'Corey'\n",
152-
"for i in range(3):\n",
152+
"for j in range(3):\n",
153153
" for i in name:\n",
154154
" print(i)"
155155
]
@@ -178,7 +178,7 @@
178178
"name": "python",
179179
"nbconvert_exporter": "python",
180180
"pygments_lexer": "ipython3",
181-
"version": "3.7.3"
181+
"version": "3.7.4"
182182
}
183183
},
184184
"nbformat": 4,

0 commit comments

Comments
 (0)