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 4186517 commit cd4e864Copy full SHA for cd4e864
control_flow.ipynb
@@ -291,7 +291,7 @@
291
"The syntax of a `for` loop is\n",
292
"\n",
293
"```python\n",
294
- "for taget in iterable:\n",
+ "for target in iterable:\n",
295
" body\n",
296
"[else:\n",
297
" suite]\n",
@@ -505,7 +505,7 @@
505
" <h4><b>Hints</b></h4>\n",
506
" <ul>\n",
507
" <li>You can use the <code>math.sqrt</code> function to compute the square root of a number</li>\n",
508
- " <li>Be sure to check that it makes sense to compute the square root</li>\n",
+ " <li>If a number does not have a square root in the real domain, you should skip it</li>\n",
509
" </ul>\n",
510
"</div>"
511
]
0 commit comments