Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions foundations/quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"source": [
"A few things to note:\n",
"\n",
"- Python defaults to counting from 0 (like C) rather than from 1 (like Fortran).\n",
"- Python defaults to counting from 0 (like [C](wiki:C_(programming_language))) rather than from 1 (like [Fortran](wiki:Fortran)).\n",
"- Function calls in Python always use parentheses: `print()`\n",
"- The colon `:` denotes the beginning of a definition (here of the repeated code under the `for` loop).\n",
"- Code blocks are identified through indentations.\n",
Expand Down Expand Up @@ -625,7 +625,9 @@
"source": [
"## Resources and references\n",
"\n",
"- [Official Python tutorial (Python Docs)](https://docs.python.org/3/tutorial/index.html)"
"- [Official Python tutorial (Python Docs)](https://docs.python.org/3/tutorial/index.html)\n",
"- [NumPy tutorials](https://numpy.org/learn/)\n",
"- [Matplotlib tutorials](https://matplotlib.org/stable/tutorials/index.html)"
]
}
],
Expand All @@ -645,7 +647,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.12"
"version": "3.14.1"
}
},
"nbformat": 4,
Expand Down
6 changes: 4 additions & 2 deletions preamble/how-to-use.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ results.
## Organization of Pythia Foundations

Pythia Foundations is organized into two main sections as seen in
the sidebar on the left and the schematic below: Foundational Skills, and Core Scientific
Python Packages. The first, Foundational Skills, covers essential
the sidebar on the left and the schematic below:
[Foundational Skills](../foundations/overview/),
and [Core Scientific Python Packages](../core/overview/).
The first, Foundational Skills, covers essential
material that all users of Project Pythia are expected to feel
comfortable with in order to make the most of the rest of the Project
Pythia content. The second, Core Scientific Python Packages, covers
Expand Down