Skip to content

Commit 36337fd

Browse files
committed
Did find and replace of (/lessons/ to (/
1 parent fd9c0dc commit 36337fd

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

lessons/common_libs/matplotlib_pyplot_basics.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
"source": [
2121
"## Prerequisites\n",
2222
"\n",
23-
"- [Variables](/lessons/variables/Variable_data_types.ipynb)\n",
24-
"- [Lists](/lessons/variables/Variable_data_types.ipynb)\n",
25-
"- Loops, [`for`](/lessons/loops_functions/for_loops.ipynb) and [`while`](/lessons/loops_functions/while_loops.ipynb)\n",
26-
"- [Functions](/lessons/loops_functions/functions_and_scope.ipynb)\n",
27-
"- [Files](/lessons/files/files_file_types.ipynb) and [reading files](/lessons/files/reading_files.ipynb)"
23+
"- [Variables](/variables/Variable_data_types.ipynb)\n",
24+
"- [Lists](/variables/Variable_data_types.ipynb)\n",
25+
"- Loops, [`for`](/loops_functions/for_loops.ipynb) and [`while`](/loops_functions/while_loops.ipynb)\n",
26+
"- [Functions](/loops_functions/functions_and_scope.ipynb)\n",
27+
"- [Files](/files/files_file_types.ipynb) and [reading files](/files/reading_files.ipynb)"
2828
]
2929
},
3030
{

lessons/solving_problems/errors_and_debug.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
"\n",
184184
"<details style=\"padding: 10px; border-radius: 2px; border: 1.5px solid gray\"> \n",
185185
"<summary style= \"font-size:130%\">Advanced Debugging - VScode</summary>\n",
186-
"VScode has extensive Python debugging abilities.[ If you are using VScode](/lessons/basics/write_run_python.md#installation) you should have the Python extension already installed. If not install it by going to the extensions tab. Which is this icon on the left \n",
186+
"VScode has extensive Python debugging abilities.[ If you are using VScode](/basics/write_run_python.md#installation) you should have the Python extension already installed. If not install it by going to the extensions tab. Which is this icon on the left \n",
187187
"\n",
188188
"![An image of 3 icons, one play image with bug in front, second a set of four squares with one rotated with a red circle around it. The third is a monitor](images/code_extensions_icon.png) \n",
189189
"\n",

lessons/variables/Comparisons.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@
260260
"<details style=\"padding: 10px; border-radius: 2px; border: 1.5px solid gray\"> \n",
261261
"<summary style= \"font-size:130%;\"> Finding contents using <tt>in</tt></summary>\n",
262262
"\n",
263-
"``in`` has two uses - you will see it come back in another way when we do [for loops](../loops_functions/For_Loop_Lesson.ipynb). In this context, ``in`` checks if a certain object is contained within a string or list.\n",
263+
"``in`` has two uses - you will see it come back in another way when we do [for loops](/loops_functions/For_Loop_Lesson.ipynb). In this context, ``in`` checks if a certain object is contained within a string or list.\n",
264264
"\n",
265265
"```Python\n",
266266
"\"O\" in \"H2O\"\n",

lessons/variables/mathematical_operators.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@
515515
"metadata": {},
516516
"source": [
517517
"To access a specific function, we must `import` it `from` the module. Below, we import the base 10 logarithm function, `log10()`\n",
518-
"(more information on importing modules will be found in [later lessons](/lessons/loops_functions/tut_import_mod.ipynb)):\n",
518+
"(more information on importing modules will be found in [later lessons](/loops_functions/tut_import_mod.ipynb)):\n",
519519
"\n",
520520
"```Python\n",
521521
"from module import function\n",

0 commit comments

Comments
 (0)