8000 Rename notebooks in a progressive order (#206) · SerAcero/python-tutorial@35139ae · GitHub
[go: up one dir, main page]

Skip to content

Commit 35139ae

Browse files
edoardob90despadam
andauthored
Rename notebooks in a progressive order (empa-scientific-it#206)
* Rename basic_datatypes * Rename functions * Rename intro notebooks * Rename advanced notebooks * Rename functions_advanced * Rename library_pandas * Update slides/control_flow_slides.ipynb * Update slides/functions_slides.ipynb * fix index * fix slide --------- Co-authored-by: Despina Adamopoulou <16343312+despadam@users.noreply.github.com> Co-authored-by: Despina Adamopoulou <despoina.adamopoulou@empa.ch>
1 parent c211b81 commit 35139ae

24 files changed

+74
-68
lines changed

00-index.ipynb

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# Introduction\n",
8+
"\n",
9+
"- [Introduction to the tutorial](./00-intro.ipynb)\n",
10+
"\n",
11+
"# Basic Tutorial\n",
12+
"\n",
13+
"- [Basic datatypes](./01-basic_datatypes.ipynb)\n",
14+
"- [Control Flow](./02-control_flow.ipynb)\n",
15+
"- [Functions](./03-functions.ipynb)\n",
16+
"- [Input-Output](./04-input_output.ipynb)\n",
17+
"- [Object-oriented programming](./05-object_oriented_programming.ipynb)\n",
18+
"- [Modules and packages](./06-modules_and_packages.ipynb)\n",
19+
"\n",
20+
"# Advanced tutorial\n",
21+
"\n",
22+
"- [Manage Python project](./10-manage_python_project.ipynb)\n",
23+
"- [Functional programming](./11-functional_programming.ipynb)\n",
24+
"- [Advanced functions](./12-functions_advanced.ipynb)\n",
25+
"- [Advanced Object-oriented programming](./13-object_oriented_programming_advanced.ipynb)\n",
26+
"\n",
27+
"# Libraries\n",
28+
"\n",
29+
"- [Matplotlib](./20-library_matplotlib.ipynb)\n",
30+
"- [NumPy](./21-library_numpy.ipynb)\n",
31+
"- [scikit-learn](./22-library_sklearn.ipynb)\n",
32+
"- [SciPy](./23-library_scipy.ipynb)\n",
33+
"- [Pandas](./24-library_pandas.ipynb)\n",
34+
"\n",
35+
"# Additional Topics\n",
36+
"\n",
37+
"- [Parallelism and concurrency in Python](./14-threads.ipynb)\n"
38+
]
39+
}
40+
],
41+
"metadata": {
42+
"kernelspec": {
43+
"display_name": "Python 3 (ipykernel)",
44+
"language": "python",
45+
"name": "python3"
46+
},
47+
"language_info": {
48+
"codemirror_mode": {
49+
"name": "ipython",
50+
"version": 3
51+
},
52+
"file_extension": ".py",
53+
"mimetype": "text/x-python",
54+
"name": "python",
55+
"nbconvert_exporter": "python",
56+
"pygments_lexer": "ipython3",
57+
"version": "3.12.0"
58+
}
59+
},
60+
"nbformat": 4,
61+
"nbformat_minor": 4
62+
}
File renamed without changes.

basic_datatypes.ipynb renamed to 01-basic_datatypes.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change< 9E88 /th>
@@ -1531,7 +1531,7 @@
15311531
"source": [
15321532
"Unlike lists, sets and dictionaries, tuples do not require parentheses.\n",
15331533
"Parenthesis are required only when there's some ambiguity.\n",
1534-
"We will discuss it in more details in the [`Functions`](functions.ipynb) chapter.\n",
1534+
"We will discuss it in more details in the [`Functions`](03-functions.ipynb) chapter.\n",
15351535
"\n",
15361536
"For now, let's just see how to define tuples without parentheses:"
15371537
]

control_flow.ipynb renamed to 02-control_flow.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"id": "5",
9292
"metadata": {},
9393
"source": [
94-
"Python [supports](./basic_datatypes.ipynb#Comparison-operators) different comparison expressions.\n",
94+
"Python [supports](./01-basic_datatypes.ipynb#Comparison-operators) different comparison expressions.\n",
9595
"They are called **logical expressions** as they evaluate to either `True` or `False`.\n",
9696
"\n",
9797
"We can use these results in **conditional statements**, and have our program behave differently based on the result."

functions.ipynb renamed to 03-functions.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@
889889
"id": "54",
890890
"metadata": {},
891891
"source": [
892-
"In the [Basic datatypes](./basic_datatypes.ipynb#Unpacking) section we saw that iterables (e.g., tuples, lists, strings) support **unpacking**. You can exploit unpacking to make a **parallel assignment**.\n",
892+
"In the [Basic datatypes](./01-basic_datatypes.ipynb#Unpacking) section we saw that iterables (e.g., tuples, lists, strings) support **unpacking**. You can exploit unpacking to make a **parallel assignment**.\n",
893893
"\n",
894894
"A reminder:\n",
895895
"\n",
@@ -1320,7 +1320,7 @@
13201320
"\n",
13211321
"<div class=\"alert alert-block alert-info\">\n",
13221322
" <h4><b>Hint</b></h4>\n",
1323-
" You need to store your <code>nums</code> in a data structure that doesn&#39;t care about ordering and discard duplicates. We have seen it on <a href=\"./basic_datatypes.ipynb#Set\">the first day of the tutorial</a>.\n",
1323+
" You need to store your <code>nums</code> in a data structure that doesn&#39;t care about ordering and discard duplicates. We have seen it on <a href=\"./01-basic_datatypes.ipynb#Set\">the first day of the tutorial</a>.\n",
13241324
"</div>"
13251325
]
13261326
},
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)
0