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

Commit 8eab738

Browse files
committed
.toc change
1 parent 77351f9 commit 8eab738

5 files changed

Lines changed: 28 additions & 5 deletions

File tree

book/_toc.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ parts:
4949
- file: objects/object.ipynb
5050
title: Objects and References
5151
- file: objects/Exercises/01.ipynb
52+
- file: modules.md
53+
title: Modules
54+
sections:
55+
- file: module/modules.ipynb
56+
title: Modules
57+
- file: module/Exercises/01.ipynb
5258
- file: 05/Theory/01.ipynb
5359
sections:
5460
- file: 05/Exercises/01.ipynb
@@ -97,6 +103,16 @@ parts:
97103
title: Functions
98104
- file: beyond/nutshell/files.ipynb
99105
title: Files
106+
- file: objects/nutshell.md
107+
title: Objects and References
108+
sections:
109+
- file: objects/nutshell/object.ipynb
110+
title: Objects and References
111+
- file: module/nutshell.md
112+
title: Modules
113+
sections:
114+
- file: module/nutshell/modules.ipynb
115+
title: Modules
100116
- file: 04/In_a_Nutshell/01.ipynb
101117
- file: 05/In_a_Nutshell/01.ipynb
102118
- file: 06/In_a_Nutshell/01.ipynb

book/module/nutshell.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Modules: in a Nutshell
2+
3+
Nutshell.

book/module/nutshell/modules.ipynb

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -240,11 +240,6 @@
240240
"\n",
241241
"Finally, you can also load your own (or somebody else's) Python files as modules. This is quite helpful, as it allows you to keep your code projects well-structured without the need to copy and paste everything.<br><br>In order to import another <b>*.py</b> file as a module, you only need to have that file and your Notebook file in the same directory and use the <code>import</code> keyword. More info on this <a href='https://csatlas.com/python-import-file-module/'>here</a>."
242242
]
243-
},
244-
{
245-
"cell_type": "markdown",
246-
"metadata": {},
247-
"source": []
248243
}
249244
],
250245
"metadata": {

book/modules.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Modules
2+
3+
This chapter ...
4+
5+
% a short overview for this chapter
6+

book/objects/nutshell.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Objects: in a Nutshell
2+
3+
Nutshell.

0 commit comments

Comments
 (0)