Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2024 revision before 2024 #412

Merged
merged 3 commits into from
Sep 22, 2024
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
1 change: 1 addition & 0 deletions exercises-toolbox/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
*.dummy
vorlage.py
FB53-Coronafallzahlen.csv
4-scipy/3-polyfit/daten.txt
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions exercises-toolbox/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ all: $(BUILDS)
@cp -r 1-python build/exercises-toolbox-1
@cp -r 2-numpy 3-matplotlib build/exercises-toolbox-2
@cp -r 4-scipy 5-uncertainties build/exercises-toolbox-3
@cp -r 6-make build/exercises-toolbox-4
@cp -r 7-git 8-all build/exercises-toolbox-5
@cp -r 6-git build/exercises-toolbox-4
@cp -r 7-make 8-all build/exercises-toolbox-5
@rm -rf build/exercises-toolbox-{1,2,3,4,5}/*/{,*/}{Makefile,.gitignore,__pycache__,*.dummy}
@cd build ; \
for day in 1 2 3 4 5 ; do \
Expand Down
8 changes: 4 additions & 4 deletions python/python.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"source": [
"![Python](https://www.python.org/static/community_logos/python-logo-generic.svg)\n",
"\n",
"- Aktuelle Version: Python 3.11\n",
"- Aktuelle Version: Python 3.12\n",
"- *Interpretierte* Programmiersprache\n",
" - Kein Kompilieren\n",
" - Programme werden mit dem `python`-Programm ausgeführt\n",
Expand Down Expand Up @@ -1415,7 +1415,7 @@
"U = 42\n",
"R = 7\n",
"\n",
"print(f\"Spannung U = {U}, R = {R}, I = {U / R}\")"
"print(f\"Spannung U = {U} V, R = {R} Ω, I = {U / R} A\")"
]
},
{
Expand Down Expand Up @@ -1653,7 +1653,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Allgemeiner Syntax-Fehler: ` SyntaxError`\n",
"## Allgemeiner Syntax-Fehler: `SyntaxError`\n",
"Zeile in der der Fehler auftritt: `line 6` \n",
"Grund für den Fehler: `SyntaxError: invalid syntax` \n",
"Hier sogar mit Hinweis auf das fehlerhafte/fehlende Zeichen.\n"
Expand Down Expand Up @@ -2005,7 +2005,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.6"
"version": "3.10.8"
}
},
"nbformat": 4,
Expand Down
Loading