Post #56: Umfrage - Was ist deine bevorzugte Programmiersprache im Bildungssektor, 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.
My source code of the exercise ...
The output of my source code ...
Post 78: MIT - Massachusetts Institute of Technology, Open Course Ware, Dr. Ana Bell, Object Oriented Programming, Introduction to computer science and programming in Python, 2023.
Post #137: Python-Kurs.eu, Geschichte von Python, Es war jedoch nie die Rede von einer Schlange, 2024.
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.
The source code of my exercise ...
The output of my source code ...
Post #17: YouTube, Programmieren Starten, Python Tutorial, #5/24 Datentypen, 2023.
Post #14: YouTube, Top 10 Programming Languages in 2023.
Post #108: W3Schools, Built-in data types in Python, 2023.
Post #146: AlternativeTo, 27 Kilobyte AB by Ola & Markus, Crowdsourced Software Recommendations, Pydroid 3 And Alternatives, 2024.
Post #94: MIMO, Learn To Code, My SQL Certificate, 2023.
The source code of my exercise ...
The output of my source code ...
Post #33: YouTube, Programmieren Starten, Python Tutorial, #9 Vergleiche in Python und der Datentyp "Bool", 2023.