Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

Commit 0cfd307

Browse files
committed
more name updates
1 parent e2319f0 commit 0cfd307

7 files changed

Lines changed: 14 additions & 8 deletions

File tree

book/_toc.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ parts:
1616
numbered: true
1717
chapters:
1818
- file: basics.md
19-
title: Basics
19+
title: Beyond the Basics
2020
sections:
2121
- file: basics/hello.ipynb
2222
title: Your First Script
@@ -37,8 +37,11 @@ parts:
3737
title: Beyond the Basics
3838
sections:
3939
- file: beyond/strings.ipynb
40+
title: Strings
4041
- file: beyond/functions.ipynb
42+
title: Functions
4143
- file: beyond/files.ipynb
44+
title: Files
4245
- file: beyond/Exercises/01.ipynb
4346
- file: 04/Theory/01.ipynb
4447
sections:
@@ -83,11 +86,14 @@ parts:
8386
- file: flow/nutshell/conditions.ipynb
8487
- file: flow/nutshell/structures.ipynb
8588
- file: beyond/nutshell.md
86-
title: Advanced Techniques
89+
title: Beyond the Basics
8790
sections:
8891
- file: beyond/nutshell/strings.ipynb
92+
title: Strings
8993
- file: beyond/nutshell/functions.ipynb
94+
title: Functions
9095
- file: beyond/nutshell/files.ipynb
96+
title: Files
9197
- file: 04/In_a_Nutshell/01.ipynb
9298
- file: 05/In_a_Nutshell/01.ipynb
9399
- file: 06/In_a_Nutshell/01.ipynb

book/beyond/files.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"cell_type": "markdown",
66
"metadata": {},
77
"source": [
8-
"# Working with files\n",
8+
"# Beyond the Basics: Working with Files\n",
99
"\n",
1010
"A lot of the work you'll do in Python will have the following structure:\n",
1111
"1. Read data from a file\n",

book/beyond/functions.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
},
1313
"source": [
14-
"# Advanced Functions\n",
14+
"# Beyond the Basics: Functions\n",
1515
"\n",
1616
"Sometimes you want to use the same code multiple times, so you could embed this code into a function. However, sometimes the code you want to use is so short that putting it into a function feels a bit over the top. This is where <b>lambda functions</b> are useful. <br><br>Lambda functions are functions that can take any number of arguments but can only have one expression in their function body. To demonstrate, see the code below. Here we have two functions that do exactly the same, but one is a lambda function and the other one is a normal function. "
1717
]

book/beyond/nutshell/files.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"cell_type": "markdown",
66
"metadata": {},
77
"source": [
8-
"# Working with files\n",
8+
"# Beyond the Basics: Working with Files\n",
99
"\n",
1010
"A lot of the work you'll do in Python will have the following structure:\n",
1111
"1. Read data from a file\n",

book/beyond/nutshell/functions.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cell_type": "markdown",
1616
"metadata": {},
1717
"source": [
18-
"# Advanced Functions\n",
18+
"# Beyond the Basics: Functions\n",
1919
"\n",
2020
"An example of an advanced fuction can be the <code>lambda function</code>. It is an anonymous function in Python that can be defined in a single line using the <b>lambda</b> keyword. It is typically used for simple and concise operations without the need for a formal function definition.\n",
2121
"\n",

book/beyond/nutshell/strings.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cell_type": "markdown",
1616
"metadata": {},
1717
"source": [
18-
"# Advanced Strings\n",
18+
"# Beyond the Basics: Strings\n",
1919
"In Python, <b><code>strings</code></b> are created using quotes ('' or \"\") and are immutable, while <b><code>f-strings</code></b> are formatted strings that allow embedding expressions inside curly braces { } for dynamic value substitution during runtime. Here is a couple of examples for strings:"
2020
]
2121
},

book/beyond/strings.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
},
1313
"source": [
14-
"# Advanced Strings\n",
14+
"# Beyond the Basics: Strings\n",
1515
"\n",
1616
"Welcome to the third Notebook. In this Notebook we are going to learn some advanced Python. Let's first start with strings. Run the code below and see what it prints out."
1717
]

0 commit comments

Comments
 (0)