Skip to content

Commit 05c7d5f

Browse files
add notebook-specific feedback form link
1 parent d77b631 commit 05c7d5f

12 files changed

Lines changed: 132 additions & 0 deletions

notebooks/01_running-python.ipynb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,17 @@
232232
" Create a cell with a table containing your favourite three derivatives. You can familiarise yourself with LaTeX for typsetting mathmatical equations <a href='https://www.authorea.com/users/77723/articles/110898-how-to-write-mathematical-equations-expressions-and-symbols-with-latex-a-cheatsheet'> here</a>.\n",
233233
"</div>"
234234
]
235+
},
236+
{
237+
"cell_type": "markdown",
238+
"metadata": {},
239+
"source": [
240+
"## Any Bugs/Issues/Comments?\n",
241+
"\n",
242+
"If you've found a bug or have any comments about this notebook, please fill out this on-line form: https://forms.gle/tp2veeF8e7fbQMvY6.\n",
243+
"\n",
244+
"Any feedback we get we will try to correct/implement as soon as possible."
245+
]
235246
}
236247
],
237248
"metadata": {

notebooks/02_python-syntax.ipynb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,17 @@
399399
"source": [
400400
"<div style=\"background-color:#ffa8a8; border-radius: 5px; padding: 10pt\"><strong>Challenge 2.14:</strong> How might you index multiple elements within a variable? Can you access the first and last elements in one line?</div>"
401401
]
402+
},
403+
{
404+
"cell_type": "markdown",
405+
"metadata": {},
406+
"source": [
407+
"## Any Bugs/Issues/Comments?\n",
408+
"\n",
409+
"If you've found a bug or have any comments about this notebook, please fill out this on-line form: https://forms.gle/tp2veeF8e7fbQMvY6.\n",
410+
"\n",
411+
"Any feedback we get we will try to correct/implement as soon as possible."
412+
]
402413
}
403414
],
404415
"metadata": {

notebooks/03_data-types.ipynb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,17 @@
344344
"* Some functions will not work on some types - the error messages should make this clear\n",
345345
"* The `str.format()` built-in method allows you to format data of specific types in specific ways"
346346
]
347+
},
348+
{
349+
"cell_type": "markdown",
350+
"metadata": {},
351+
"source": [
352+
"## Any Bugs/Issues/Comments?\n",
353+
"\n",
354+
"If you've found a bug or have any comments about this notebook, please fill out this on-line form: https://forms.gle/tp2veeF8e7fbQMvY6.\n",
355+
"\n",
356+
"Any feedback we get we will try to correct/implement as soon as possible."
357+
]
347358
}
348359
],
349360
"metadata": {

notebooks/04_functions-and-help.ipynb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,17 @@
376376
"* `SyntaxError` indicates a writing error in your code - usually an open string or missing parenthesis\n",
377377
"* `NameError` indicates that the function or variable you've called doesn't exist"
378378
]
379+
},
380+
{
381+
"cell_type": "markdown",
382+
"metadata": {},
383+
"source": [
384+
"## Any Bugs/Issues/Comments?\n",
385+
"\n",
386+
"If you've found a bug or have any comments about this notebook, please fill out this on-line form: https://forms.gle/tp2veeF8e7fbQMvY6.\n",
387+
"\n",
388+
"Any feedback we get we will try to correct/implement as soon as possible."
389+
]
379390
}
380391
],
381392
"metadata": {

notebooks/05_python-lists.ipynb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,17 @@
321321
"results = myVariable.sort()\n",
322322
"print(results)"
323323
]
324+
},
325+
{
326+
"cell_type": "markdown",
327+
"metadata": {},
328+
"source": [
329+
"## Any Bugs/Issues/Comments?\n",
330+
"\n",
331+
"If you've found a bug or have any comments about this notebook, please fill out this on-line form: https://forms.gle/tp2veeF8e7fbQMvY6.\n",
332+
"\n",
333+
"Any feedback we get we will try to correct/implement as soon as possible."
334+
]
324335
}
325336
],
326337
"metadata": {

notebooks/06_python-loops.ipynb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,17 @@
286286
"* Errors are helpful! (yet again)\n",
287287
"* The built-in Python function `range()` can be used to create a `for` loop that iterates over a sequence of numbers"
288288
]
289+
},
290+
{
291+
"cell_type": "markdown",
292+
"metadata": {},
293+
"source": [
294+
"## Any Bugs/Issues/Comments?\n",
295+
"\n",
296+
"If you've found a bug or have any comments about this notebook, please fill out this on-line form: https://forms.gle/tp2veeF8e7fbQMvY6.\n",
297+
"\n",
298+
"Any feedback we get we will try to correct/implement as soon as possible."
299+
]
289300
}
290301
],
291302
"metadata": {

notebooks/07_python-conditionals.ipynb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,17 @@
324324
"source": [
325325
"True and 'Lion'[1] == '___'[1]"
326326
]
327+
},
328+
{
329+
"cell_type": "markdown",
330+
"metadata": {},
331+
"source": [
332+
"## Any Bugs/Issues/Comments?\n",
333+
"\n",
334+
"If you've found a bug or have any comments about this notebook, please fill out this on-line form: https://forms.gle/tp2veeF8e7fbQMvY6.\n",
335+
"\n",
336+
"Any feedback we get we will try to correct/implement as soon as possible."
337+
]
327338
}
328339
],
329340
"metadata": {

notebooks/08_python-functions.ipynb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,17 @@
241241
"else:\n",
242242
" print('Go wild!') "
243243
]
244+
},
245+
{
246+
"cell_type": "markdown",
247+
"metadata": {},
248+
"source": [
249+
"## Any Bugs/Issues/Comments?\n",
250+
"\n",
251+
"If you've found a bug or have any comments about this notebook, please fill out this on-line form: https://forms.gle/tp2veeF8e7fbQMvY6.\n",
252+
"\n",
253+
"Any feedback we get we will try to correct/implement as soon as possible."
254+
]
244255
}
245256
],
246257
"metadata": {

notebooks/09_python_modules.ipynb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,17 @@
243243
"* You can use an alias when importing to make your code easier to understand\n",
244244
"* Details for modules can be found in their documentation"
245245
]
246+
},
247+
{
248+
"cell_type": "markdown",
249+
"metadata": {},
250+
"source": [
251+
"## Any Bugs/Issues/Comments?\n",
252+
"\n",
253+
"If you've found a bug or have any comments about this notebook, please fill out this on-line form: https://forms.gle/tp2veeF8e7fbQMvY6.\n",
254+
"\n",
255+
"Any feedback we get we will try to correct/implement as soon as possible."
256+
]
246257
}
247258
],
248259
"metadata": {

notebooks/10_numpy-and-scipy.ipynb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,17 @@
174174
"* NumPy and SciPy provide mathematical, statistical, scientific and engineering functions\n",
175175
"* Whilst NumPy and SciPy documentation can look overwhelming, it can easily be interpreted"
176176
]
177+
},
178+
{
179+
"cell_type": "markdown",
180+
"metadata": {},
181+
"source": [
182+
"## Any Bugs/Issues/Comments?\n",
183+
"\n",
184+
"If you've found a bug or have any comments about this notebook, please fill out this on-line form: https://forms.gle/tp2veeF8e7fbQMvY6.\n",
185+
"\n",
186+
"Any feedback we get we will try to correct/implement as soon as possible."
187+
]
177188
}
178189
],
179190
"metadata": {

0 commit comments

Comments
 (0)