Skip to content

Commit 85cf97f

Browse files
authored
Add more links (#589)
* Quickstart: add links to C/Fortan and np/plt tutorials * Use MyST wiki links
1 parent a8a5fa0 commit 85cf97f

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

foundations/quickstart.ipynb

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"source": [
8989
"A few things to note:\n",
9090
"\n",
91-
"- Python defaults to counting from 0 (like C) rather than from 1 (like Fortran).\n",
91+
"- Python defaults to counting from 0 (like [C](wiki:C_(programming_language))) rather than from 1 (like [Fortran](wiki:Fortran)).\n",
9292
"- Function calls in Python always use parentheses: `print()`\n",
9393
"- The colon `:` denotes the beginning of a definition (here of the repeated code under the `for` loop).\n",
9494
"- Code blocks are identified through indentations.\n",
@@ -625,7 +625,9 @@
625625
"source": [
626626
"## Resources and references\n",
627627
"\n",
628-
"- [Official Python tutorial (Python Docs)](https://docs.python.org/3/tutorial/index.html)"
628+
"- [Official Python tutorial (Python Docs)](https://docs.python.org/3/tutorial/index.html)\n",
629+
"- [NumPy tutorials](https://numpy.org/learn/)\n",
630+
"- [Matplotlib tutorials](https://matplotlib.org/stable/tutorials/index.html)"
629631
]
630632
}
631633
],
@@ -645,7 +647,7 @@
645647
"name": "python",
646648
"nbconvert_exporter": "python",
647649
"pygments_lexer": "ipython3",
648-
"version": "3.10.12"
650+
"version": "3.14.1"
649651
}
650652
},
651653
"nbformat": 4,

preamble/how-to-use.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ results.
3030
## Organization of Pythia Foundations
3131

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

0 commit comments

Comments
 (0)