Source: www.techvidvan.com
Python is a popular, powerful, and versatile programming language that is widely used in a variety of fields. It is well renowned for being straightforward, readable, and simple to use, making it a fantastic option for both novice and seasoned programmers.
Post #52: TechVidvan, The Python Interpreter, 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 #131: YouTube, TechWorld with Nana, Python Tutorial for Beginners, Learn Python in 5 hours, 2024.
Post #126: Real Python, Variables in Python, 2024.
Post #14: YouTube, Top 10 Programming Languages in 2023.
Post #84: YouTube, TimeLine Deutschland, Gottfried Leibniz: Das größte Genie aller Zeiten, 2023.
Post #12: My account and progress on MIMO. I'm studying Python, SQL, Javascript and HTML there. I can recommend MIMO, because of the method and real fun to learn various programming and script languages, 2023.
The source code of my exercise ...
The output of my source code ...
Post #37: YouTube, Programmieren Starten, #10 Die If-Anweisung, 2023.
Dummy ...
Post#138:
These are built-in functions or a part of the "math" modul.
Post #179: Python.Hub on Instagram, Mathematical built-in functions resp. methods in Python, 2024.
Post #102: YouTube, Estefanía Cassingena-Navone, Learn Python In 2 Hours, 2023.
Estefanía is one of my favourite programming instructors. She explains step by step and visualizes wonderfully. I also like her voice and how she gets to the heart of the learning content. I have booked several coding courses on Udemy which are really excellent.