Post #132: Bildungsserver Berlin-Brandenburg, Python - Die Programmiersprache im Bildungssystem, 2024.
Post #115: Python.Hub / Instagram, Python Data Structures: Lists, Tubles, Sets and Dictionaries, 2024.
https://opensource.com/resources/python/ides
Post #164: www.opensource.com, Jason Baker & Seth Kenlon, Top 5 open source Python IDEs, 2025.
The source code of my exercise ...
The output of my source code ...
Post #29: YouTube, Programmieren-Starten, #8 Der Zuweisungsoperator und die kombinierten Zuweisungsoperatoren, 2023.
This is how you work out whether if a particular year is a leap year.
On every year that is divisible by 4 with no remainder
Except every year that is evenly divisible by 100 with no remainder
Unless the year is also divisible by 400 with no remainder
Source: Angela Yu, Udemy, 2024
Year 2000:
2000 ÷ 4 = 500 (Leap)
2000 ÷ 100 = 20 (Not Leap)
2000 ÷ 400 = 5 (Leap!)
So, year 2000 is a leap year.
Year 2100:
2100 ÷ 4 = 525 (Leap)
2100 ÷ 100 = 21 (Not Leap)
2100 ÷ 400 = 5.25 (Not Leap)
But year 2100 is not a leap year.
Post #113: Free Programming Exercise, Leap Year, 2024.
Post #157: WebTigerPython, An educational and python-like programming language for kids, youth and adults, 2025.
Variable Declaration
Control Structures
Data Structures
OOP (for beginners?)
Syntax And Tools
Post #70: Analytics Insight, 5 Fundamental Coding Concepts for Beginners, 2023.
Post #95: Sololearn, The best way to learn to code, 2023.
https://www.turing.com/kb/22-hottest-python-tricksfor-efficient-coding
Post #130: Turing, 22 hottest Python tricks for efficient coding, 2024.
The source code of my exercise ...
The output of my source code ...
Post #73: YouTube, Programmieren-Starten, Python Tutorial, #19 Funktionen mit Parametern, 2023.
The source code of my exercise ...
The output of my source code ...
Post #77: YouTube, Programmieren-Starten, Python Tutorial, #20 Funktionen mit Rückgabewert, 2023.