Skip to content

Commit a6002a7

Browse files
fixed website
1 parent b32e277 commit a6002a7

File tree

191 files changed

+56873
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+56873
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.quarto/
2+
/*/.jupyter_cache/
3+
/*/__pycache__

.nojekyll

Whitespace-only changes.

LICENSE

Lines changed: 429 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Introduction to Python
2+
3+
This repository contains course materials for a "Programming with Python" course first teached at Kühne Logistics University Hamburg in Fall 2024. Most of it is written with Quarto and the corresponding website is hosted as Github page under [beyondsimulations.github.io/python-course/](https://beyondsimulations.github.io/python-course/).
4+
5+
## Quick Overview
6+
7+
This module introduces programming with Python over the course of 13 weeks. It is aimed at beginners with no prior programming experience. The course is based on many examples that illustrate how to tackle potentially complex issues and implement solutions.
8+
9+
### Course Structure
10+
11+
The course is structured into three main parts:
12+
13+
1. **Part I: Introduction to Programming with Python**
14+
- Basic concepts, syntax, data types, control structures, functions, and object classes
15+
16+
2. **Part II: Data Science with Python**
17+
- Data manipulation, descriptive and explorative analysis, visualization
18+
19+
3. **Part III: Programming Projects**
20+
- Application of knowledge in group projects
21+
22+
For more detailed information about the course structure, lectures, and content, please refer to the [syllabus](general/syllabus.qmd).
23+
24+
## Contact
25+
26+
If you have any questions regarding the course, please contact:
27+
28+
[[email protected]](mailto:[email protected]?subject=Programming%20with%20Python%20-%20KLU24%3A%20%3CYour%20subject%3E)
29+
30+
## Contributors
31+
32+
Thanks to [Phillip Bach](https://github.com/PhilippBach) whose original course material laid the foundation for this course.

_quarto.yml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
project:
2+
type: website
3+
output-dir: docs
4+
5+
website:
6+
title: "Programming with Python"
7+
repo-url: https://github.com/beyondsimulations/Introduction-to-Python
8+
site-url: https://beyondsimulations.github.io/Introduction-to-Python
9+
bread-crumbs: true
10+
sidebar:
11+
style: floating
12+
collapse-level: 1
13+
search: true
14+
contents:
15+
- text: "Welcome"
16+
href: index.qmd
17+
- text: "Syllabus"
18+
href: general/syllabus.qmd
19+
- section: "01 Introduction "
20+
contents:
21+
- text: "Lecture"
22+
href: part-01/lecture-introduction.qmd
23+
- text: "Tutorial"
24+
href: part-01/tutorial-introduction.qmd
25+
- section: "02 Control Flow"
26+
contents:
27+
- text: "Lecture"
28+
href: part-02/lecture-control.qmd
29+
- text: "Tutorial"
30+
href: part-02/tutorial-control.qmd
31+
- section: "Assignments"
32+
contents:
33+
- text: "01 Assignment"
34+
href: assignments/assignment-1.qmd
35+
- text: "02 Assignment"
36+
href: assignments/assignment-2.qmd
37+
- text: "FAQs"
38+
href: general/faq.qmd
39+
- text: "Literature"
40+
href: general/literature.qmd
41+
page-footer:
42+
center: "Programming with Python, Tobias Vlćek</br>CC BY-NC-SA 4.0"
43+
right:
44+
- icon: github
45+
href: https://github.com/beyondsimulations/Introduction-to-Python
46+
- icon: linkedin
47+
href: https://linkedin.com/in/tobiasvlcek
48+
49+
format:
50+
html:
51+
theme: litera
52+
css: styles.css
53+
toc: true
54+
55+
execute:
56+
cache: true
57+
58+

assignments/assignment-1.qmd

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: "Assignment I"
3+
subtitle: "Programming with Python"
4+
5+
html:
6+
theme: litera
7+
code-copy: true
8+
code-link: true
9+
toc: true
10+
toc-location: right
11+
---
12+
13+
Nothing here yet. Please check back later, as the first assignment will be available here soon.
14+

assignments/assignment-2.qmd

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: "Assignment II"
3+
subtitle: "Programming with Python"
4+
5+
html:
6+
theme: litera
7+
code-copy: true
8+
code-link: true
9+
toc: true
10+
toc-location: right
11+
---
12+
13+
Nothing here yet. Please check back later, after the first assignment is available.

docs/.nojekyll

Whitespace-only changes.

0 commit comments

Comments
 (0)