Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4d3a1a8

Browse filesBrowse files
committed
Rename basic_datatypes
1 parent 94ce66d commit 4d3a1a8
Copy full SHA for 4d3a1a8

File tree

Expand file treeCollapse file tree

5 files changed

+22
-22
lines changed
Filter options
Expand file treeCollapse file tree

5 files changed

+22
-22
lines changed

‎control_flow.ipynb

Copy file name to clipboardExpand all lines: control_flow.ipynb
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"id": "c77d7858-0f56-4925-9724-689aadbb23a7",
7575
"metadata": {},
7676
"source": [
77-
"Python [supports](./basic_datatypes.ipynb#Comparison-operators) different comparison expressions. They return either `True` or `False`.\n",
77+
"Python [supports](./01-basic_datatypes.ipynb#Comparison-operators) different comparison expressions. They return either `True` or `False`.\n",
7878
"\n",
7979
"We use these results to evaluate **conditional statements**, and branch have our program behave differently."
8080
]

‎functions.ipynb

Copy file name to clipboardExpand all lines: functions.ipynb
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@
654654
"id": "b87faacb-1da9-4e5b-9cd1-0a23d0ce74b8",
655655
"metadata": {},
656656
"source": [
657-
"In the [Basic datatypes](./basic_datatypes.ipynb#Unpacking) section we saw that iterables (tuples and lists) support **unpacking**. You can exploit unpacking to make a **parallel assignment**.\n",
657+
"In the [Basic datatypes](./01-basic_datatypes.ipynb#Unpacking) section we saw that iterables (tuples and lists) support **unpacking**. You can exploit unpacking to make a **parallel assignment**.\n",
658658
"\n",
659659
"A reminder:\n",
660660
"\n",
@@ -1039,7 +1039,7 @@
10391039
"\n",
10401040
"<div class=\"alert alert-block alert-info\">\n",
10411041
" <h4><b>Hint</b></h4>\n",
1042-
" 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",
1042+
" 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",
10431043
"</div>"
10441044
]
10451045
},

‎index.ipynb

Copy file name to clipboardExpand all lines: index.ipynb
+17-17Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,29 @@
66
"source": [
77
"# Basic Tutorial\n",
88
"\n",
9-
"- [Introduction to the tutorial](./intro.ipynb)\n",
10-
"- [Basic datatypes](./basic_datatypes.ipynb)\n",
11-
"- [Control Flow](./control_flow.ipynb)\n",
12-
"- [Functions](./functions.ipynb)\n",
13-
"- [Input-Output](./input_output.ipynb)\n",
14-
"- [Functional programming](./functional_programming.ipynb)\n",
15-
"- [Object-oriented programming](./object_oriented_programming.ipynb)\n",
16-
"- [Modules and packages](./modules_and_packages.ipynb)\n",
9+
"- [Introduction to the tutorial](./00-intro.ipynb)\n",
10+
"- [Basic datatypes](./01-basic_datatypes.ipynb)\n",
11+
"- [Control Flow](./02-control_flow.ipynb)\n",
12+
"- [Functions](./03-functions.ipynb)\n",
13+
"- [Input-Output](./04-input_output.ipynb)\n",
14+
"- [Object-oriented programming](./05-object_oriented_programming.ipynb)\n",
15+
"- [Modules and packages](./06-modules_and_packages.ipynb)\n",
1716
"\n",
1817
"# Advanced tutorial\n",
1918
"\n",
20-
"- [Manage Python project](./manage_python_project.ipynb)\n",
21-
"- [Advanced functions](./functions_advanced.ipynb)\n",
22-
"- [Advanced Object-oriented programming](./object_oriented_programming_advanced.ipynb)\n",
23-
"- [Parallelism and concurrency in Python](./threads.ipynb)\n",
19+
"- [Manage Python project](./10-manage_python_project.ipynb)\n",
20+
"- [Functional programming](./11-functional_programming.ipynb)\n",
21+
"- [Advanced functions](./12-functions_advanced.ipynb)\n",
22+
"- [Advanced Object-oriented programming](./13-object_oriented_programming_advanced.ipynb)\n",
23+
"- [Parallelism and concurrency in Python](./14-threads.ipynb)\n",
2424
"\n",
2525
"# Libraries\n",
2626
"\n",
27-
"- [Matplotlib](./library_matplotlib.ipynb)\n",
28-
"- [NumPy](./library_numpy.ipynb)\n",
29-
"- [scikit-learn](./library_sklearn.ipynb)\n",
30-
"- [SciPy](./library_scipy.ipynb)\n",
31-
"- [Pandas](./library_pandas.ipynb)"
27+
"- [Matplotlib](./20-library_matplotlib.ipynb)\n",
28+
"- [NumPy](./21-library_numpy.ipynb)\n",
29+
"- [scikit-learn](./22-library_sklearn.ipynb)\n",
30+
"- [SciPy](./23-library_scipy.ipynb)\n",
31+
"- [Pandas](./24-library_pandas.ipynb)"
3232
]
3333
}
3434
],

‎slides/control_flow_slides.ipynb

Copy file name to clipboardExpand all lines: slides/control_flow_slides.ipynb
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"id": "c77d7858-0f56-4925-9724-689aadbb23a7",
7474
"metadata": {},
7575
"source": [
76-
"Python [supports](./basic_datatypes.ipynb#Comparison-operators) different comparison expressions. They return either `True` or `False`.\n",
76+
"Python [supports](./01-basic_datatypes.ipynb#Comparison-operators) different comparison expressions. They return either `True` or `False`.\n",
7777
"\n",
7878
"We use these results to evaluate **conditional statements**, and branch have our program behave differently."
7979
]

‎slides/functions_slides.ipynb

Copy file name to clipboardExpand all lines: slides/functions_slides.ipynb
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@
694694
"id": "b87faacb-1da9-4e5b-9cd1-0a23d0ce74b8",
695695
"metadata": {},
696696
"source": [
697-
"In the [Basic datatypes](./basic_datatypes.ipynb#Unpacking) section we saw that iterables (tuples and lists) support **unpacking**. You can exploit unpacking to make a **parallel assignment**.\n",
697+
"In the [Basic datatypes](./01-basic_datatypes.ipynb#Unpacking) section we saw that iterables (tuples and lists) support **unpacking**. You can exploit unpacking to make a **parallel assignment**.\n",
698698
"\n",
699699
"Now that we know about unpacking and the `*`/`**` operators, we can create more flexible functions that can accept any number of **positional** or **keyword** arguments.\n",
700700
"\n",

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.