Skip to content

Commit

Permalink
Correcting a variable name as suggested in text
Browse files Browse the repository at this point in the history
  • Loading branch information
Ratansingh648 committed May 25, 2020
1 parent 7c1a424 commit c9c6275
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Chapter01/Exercise20/Exercise20.ipynb
Expand Up @@ -117,12 +117,12 @@
],
"source": [
"for i in range(3, 0, -1):\n",
" print(i)"
" print(i)"
]
},
{
"cell_type": "code",
"execution_count": 6,
"execution_count": 1,
"metadata": {},
"outputs": [
{
Expand All @@ -149,7 +149,7 @@
],
"source": [
"name = 'Corey'\n",
"for i in range(3):\n",
"for j in range(3):\n",
" for i in name:\n",
" print(i)"
]
Expand Down Expand Up @@ -178,7 +178,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
"version": "3.7.4"
}
},
"nbformat": 4,
Expand Down

0 comments on commit c9c6275

Please sign in to comment.