Skip to content

Commit 939cdb4

Browse files
committed
Update documentation
1 parent 1385315 commit 939cdb4

9 files changed

Lines changed: 37 additions & 37 deletions
File renamed without changes.
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# Assignment
1+
# Python Coding Warm-Up
22

33
(Last updated: Jan 30, 2024)[^credit]
44

55
[^credit]: Credit: this teaching material is created by [Yen-Chia Hsu](https://github.com/yenchiah).
66

77
## Materials
88

9-
- [Python Coding Warm-Up Online Notebook](assignment-python-warm-up-notebook)
9+
- [Python Coding Warm-Up Online Notebook](python-warm-up-notebook)
1010

1111
## Usage
1212

13-
Follow the steps below to set up the assignment:
13+
Follow the steps below to set up the notebook:
1414
- Have the [JupyterLab](https://jupyter.org/install) environment ready.
1515
- Download the notebook file by clicking on the download icon at the top of the webpage when visiting the notebook pages.
16-
- Open the notebook file and start doing the assignment.
16+
- Open the notebook file and start working on the tasks.
1717

18-
Follow the steps below to do the assignment:
18+
Follow the steps below to do the tasks:
1919
- First, for each task, try your best to implement the solution without checking the answer.
2020
- In the meantime, use the hint in the task description. You can also check the functions that are mentioned in the hint online.
2121
- Try your best to implement the solution using the functions in the hint. If you still have no clue, check the answer, understand how it works, and implement the solution again by yourself.
@@ -24,6 +24,6 @@ Follow the steps below to do the assignment:
2424
## Additional Recourses
2525

2626
Check the [pandas API](https://pandas.pydata.org/docs/reference/index.html) when writing the code.
27-
If you have finished the assignment and want to practice more, below are some resources for self-study:
27+
If you have finished the tasks and want to practice more, below are some resources for self-study:
2828
- [Introduction to Pandas](https://pandas.pydata.org/docs/user_guide/10min.html)
2929
- [Introduction to Numpy](https://sebastianraschka.com/blog/2020/numpy-intro.html)

docs/assignment-python-warm-up-notebook.html renamed to docs/python-warm-up-notebook.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<script async="async" src="../_static/sphinx-thebe.js"></script>
5454
<link rel="index" title="Index" href="../genindex.html" />
5555
<link rel="search" title="Search" href="../search.html" />
56-
<link rel="prev" title="Assignment" href="assignment-python-warm-up.html" />
56+
<link rel="prev" title="Python Coding Warm-Up" href="python-warm-up.html" />
5757
<meta name="viewport" content="width=device-width, initial-scale=1" />
5858
<meta name="docsearch:language" content="None">
5959

@@ -103,8 +103,8 @@ <h1 class="site-logo" id="site-title">Python Warm-Up</h1>
103103

104104
<ul class="nav bd-sidenav bd-sidenav__home-link">
105105
<li class="toctree-l1">
106-
<a class="reference internal" href="assignment-python-warm-up.html">
107-
Assignment
106+
<a class="reference internal" href="python-warm-up.html">
107+
Python Coding Warm-Up
108108
</a>
109109
</li>
110110
</ul>
@@ -173,7 +173,7 @@ <h1 class="site-logo" id="site-title">Python Warm-Up</h1>
173173
<div class="menu-dropdown__content">
174174
<ul>
175175
<li>
176-
<a href="https://colab.research.google.com/github/MultiX-Amsterdam/python-warm-up/blob/main/docs/assignment-python-warm-up-notebook.ipynb"
176+
<a href="https://colab.research.google.com/github/MultiX-Amsterdam/python-warm-up/blob/main/docs/python-warm-up-notebook.ipynb"
177177
class="headerbtn"
178178
data-toggle="tooltip"
179179
data-placement="left"
@@ -233,7 +233,7 @@ <h1 class="site-logo" id="site-title">Python Warm-Up</h1>
233233
</li>
234234

235235
<li>
236-
<a href="https://github.com/MultiX-Amsterdam/python-warm-up/issues/new?title=Issue%20on%20page%20%2Fdocs/assignment-python-warm-up-notebook.html&body=Your%20issue%20content%20here."
236+
<a href="https://github.com/MultiX-Amsterdam/python-warm-up/issues/new?title=Issue%20on%20page%20%2Fdocs/python-warm-up-notebook.html&body=Your%20issue%20content%20here."
237237
class="headerbtn"
238238
data-toggle="tooltip"
239239
data-placement="left"
@@ -261,7 +261,7 @@ <h1 class="site-logo" id="site-title">Python Warm-Up</h1>
261261
<div class="menu-dropdown__content">
262262
<ul>
263263
<li>
264-
<a href="../_sources/docs/assignment-python-warm-up-notebook.ipynb"
264+
<a href="../_sources/docs/python-warm-up-notebook.ipynb"
265265
class="headerbtn"
266266
data-toggle="tooltip"
267267
data-placement="left"
@@ -2843,11 +2843,11 @@ <h3>Other Information<a class="headerlink" href="#id9" title="Permalink to this
28432843

28442844
<!-- Previous / next buttons -->
28452845
<div class='prev-next-area'>
2846-
<a class='left-prev' id="prev-link" href="assignment-python-warm-up.html" title="previous page">
2846+
<a class='left-prev' id="prev-link" href="python-warm-up.html" title="previous page">
28472847
<i class="fas fa-angle-left"></i>
28482848
<div class="prev-next-info">
28492849
<p class="prev-next-subtitle">previous</p>
2850-
<p class="prev-next-title">Assignment</p>
2850+
<p class="prev-next-title">Python Coding Warm-Up</p>
28512851
</div>
28522852
</a>
28532853
</div>
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
88

9-
<title>Assignment &#8212; Python Warm-Up</title>
9+
<title>Python Coding Warm-Up &#8212; Python Warm-Up</title>
1010

1111
<!-- Loaded before other Sphinx assets -->
1212
<link href="../_static/styles/theme.css?digest=1999514e3f237ded88cf" rel="stylesheet">
@@ -53,7 +53,7 @@
5353
<script async="async" src="../_static/sphinx-thebe.js"></script>
5454
<link rel="index" title="Index" href="../genindex.html" />
5555
<link rel="search" title="Search" href="../search.html" />
56-
<link rel="next" title="Python Coding Warm-Up" href="assignment-python-warm-up-notebook.html" />
56+
<link rel="next" title="Python Coding Warm-Up" href="python-warm-up-notebook.html" />
5757
<meta name="viewport" content="width=device-width, initial-scale=1" />
5858
<meta name="docsearch:language" content="None">
5959

@@ -104,13 +104,13 @@ <h1 class="site-logo" id="site-title">Python Warm-Up</h1>
104104
<ul class="nav bd-sidenav bd-sidenav__home-link">
105105
<li class="toctree-l1 current active">
106106
<a class="reference internal" href="#">
107-
Assignment
107+
Python Coding Warm-Up
108108
</a>
109109
</li>
110110
</ul>
111111
<ul class="nav bd-sidenav">
112112
<li class="toctree-l1">
113-
<a class="reference internal" href="assignment-python-warm-up-notebook.html">
113+
<a class="reference internal" href="python-warm-up-notebook.html">
114114
Notebook
115115
</a>
116116
</li>
@@ -204,7 +204,7 @@ <h1 class="site-logo" id="site-title">Python Warm-Up</h1>
204204
</li>
205205

206206
<li>
207-
<a href="https://github.com/MultiX-Amsterdam/python-warm-up/issues/new?title=Issue%20on%20page%20%2Fdocs/assignment-python-warm-up.html&body=Your%20issue%20content%20here."
207+
<a href="https://github.com/MultiX-Amsterdam/python-warm-up/issues/new?title=Issue%20on%20page%20%2Fdocs/python-warm-up.html&body=Your%20issue%20content%20here."
208208
class="headerbtn"
209209
data-toggle="tooltip"
210210
data-placement="left"
@@ -232,7 +232,7 @@ <h1 class="site-logo" id="site-title">Python Warm-Up</h1>
232232
<div class="menu-dropdown__content">
233233
<ul>
234234
<li>
235-
<a href="../_sources/docs/assignment-python-warm-up.md"
235+
<a href="../_sources/docs/python-warm-up.md"
236236
class="headerbtn"
237237
data-toggle="tooltip"
238238
data-placement="left"
@@ -315,7 +315,7 @@ <h1 class="site-logo" id="site-title">Python Warm-Up</h1>
315315
<div class="col pl-md-3 pl-lg-5 content-container">
316316
<!-- Table of contents that is only displayed when printing the page -->
317317
<div id="jb-print-docs-body" class="onlyprint">
318-
<h1>Assignment</h1>
318+
<h1>Python Coding Warm-Up</h1>
319319
<!-- Table of contents -->
320320
<div id="print-main-content">
321321
<div id="jb-print-toc">
@@ -350,24 +350,24 @@ <h2> Contents </h2>
350350

351351
<div>
352352

353-
<section class="tex2jax_ignore mathjax_ignore" id="assignment">
354-
<h1>Assignment<a class="headerlink" href="#assignment" title="Permalink to this headline">#</a></h1>
353+
<section class="tex2jax_ignore mathjax_ignore" id="python-coding-warm-up">
354+
<h1>Python Coding Warm-Up<a class="headerlink" href="#python-coding-warm-up" title="Permalink to this headline">#</a></h1>
355355
<p>(Last updated: Jan 30, 2024)<a class="footnote-reference brackets" href="#credit" id="id1">1</a></p>
356356
<section id="materials">
357357
<h2>Materials<a class="headerlink" href="#materials" title="Permalink to this headline">#</a></h2>
358358
<ul class="simple">
359-
<li><p><a class="reference internal" href="assignment-python-warm-up-notebook.html"><span class="doc std std-doc">Python Coding Warm-Up Online Notebook</span></a></p></li>
359+
<li><p><a class="reference internal" href="python-warm-up-notebook.html"><span class="doc std std-doc">Python Coding Warm-Up Online Notebook</span></a></p></li>
360360
</ul>
361361
</section>
362362
<section id="usage">
363363
<h2>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">#</a></h2>
364-
<p>Follow the steps below to set up the assignment:</p>
364+
<p>Follow the steps below to set up the notebook:</p>
365365
<ul class="simple">
366366
<li><p>Have the <a class="reference external" href="https://jupyter.org/install">JupyterLab</a> environment ready.</p></li>
367367
<li><p>Download the notebook file by clicking on the download icon at the top of the webpage when visiting the notebook pages.</p></li>
368-
<li><p>Open the notebook file and start doing the assignment.</p></li>
368+
<li><p>Open the notebook file and start working on the tasks.</p></li>
369369
</ul>
370-
<p>Follow the steps below to do the assignment:</p>
370+
<p>Follow the steps below to do the tasks:</p>
371371
<ul class="simple">
372372
<li><p>First, for each task, try your best to implement the solution without checking the answer.</p></li>
373373
<li><p>In the meantime, use the hint in the task description. You can also check the functions that are mentioned in the hint online.</p></li>
@@ -378,7 +378,7 @@ <h2>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">
378378
<section id="additional-recourses">
379379
<h2>Additional Recourses<a class="headerlink" href="#additional-recourses" title="Permalink to this headline">#</a></h2>
380380
<p>Check the <a class="reference external" href="https://pandas.pydata.org/docs/reference/index.html">pandas API</a> when writing the code.
381-
If you have finished the assignment and want to practice more, below are some resources for self-study:</p>
381+
If you have finished the tasks and want to practice more, below are some resources for self-study:</p>
382382
<ul class="simple">
383383
<li><p><a class="reference external" href="https://pandas.pydata.org/docs/user_guide/10min.html">Introduction to Pandas</a></p></li>
384384
<li><p><a class="reference external" href="https://sebastianraschka.com/blog/2020/numpy-intro.html">Introduction to Numpy</a></p></li>
@@ -421,7 +421,7 @@ <h2>Additional Recourses<a class="headerlink" href="#additional-recourses" title
421421

422422
<!-- Previous / next buttons -->
423423
<div class='prev-next-area'>
424-
<a class='right-next' id="next-link" href="assignment-python-warm-up-notebook.html" title="next page">
424+
<a class='right-next' id="next-link" href="python-warm-up-notebook.html" title="next page">
425425
<div class="prev-next-info">
426426
<p class="prev-next-subtitle">next</p>
427427
<p class="prev-next-title">Python Coding Warm-Up</p>

genindex.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,14 @@ <h1 class="site-logo" id="site-title">Python Warm-Up</h1>
101101

102102
<ul class="nav bd-sidenav bd-sidenav__home-link">
103103
<li class="toctree-l1">
104-
<a class="reference internal" href="docs/assignment-python-warm-up.html">
105-
Assignment
104+
<a class="reference internal" href="docs/python-warm-up.html">
105+
Python Coding Warm-Up
106106
</a>
107107
</li>
108108
</ul>
109109
<ul class="nav bd-sidenav">
110110
<li class="toctree-l1">
111-
<a class="reference internal" href="docs/assignment-python-warm-up-notebook.html">
111+
<a class="reference internal" href="docs/python-warm-up-notebook.html">
112112
Notebook
113113
</a>
114114
</li>

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<meta http-equiv="Refresh" content="0; url=docs/assignment-python-warm-up.html" />
1+
<meta http-equiv="Refresh" content="0; url=docs/python-warm-up.html" />

objects.inv

-11 Bytes
Binary file not shown.

search.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,14 @@ <h1 class="site-logo" id="site-title">Python Warm-Up</h1>
107107

108108
<ul class="nav bd-sidenav bd-sidenav__home-link">
109109
<li class="toctree-l1">
110-
<a class="reference internal" href="docs/assignment-python-warm-up.html">
111-
Assignment
110+
<a class="reference internal" href="docs/python-warm-up.html">
111+
Python Coding Warm-Up
112112
</a>
113113
</li>
114114
</ul>
115115
<ul class="nav bd-sidenav">
116116
<li class="toctree-l1">
117-
<a class="reference internal" href="docs/assignment-python-warm-up-notebook.html">
117+
<a class="reference internal" href="docs/python-warm-up-notebook.html">
118118
Notebook
119119
</a>
120120
</li>

0 commit comments

Comments
 (0)