Programming · Python
Python (Part 5): Loops
Part 5 of the Python series: repeat work without copy-pasting using for and while loops, the range() helper, plus break, continue, and enumerate().
Home / Category
Programming · Python
Part 5 of the Python series: repeat work without copy-pasting using for and while loops, the range() helper, plus break, continue, and enumerate().
Programming · Python
Part 4 of the Python series: make your programs decide with if, elif, and else — plus truthiness, the ternary shortcut, and match (Python 3.10+).
Programming · Python
Part 3 of the Python series: operators — arithmetic (incl. // and **), assignment, comparison, and logic, plus what Python does differently from PHP.
Programming · Python
Part 2 of the Python series: variables and data types — how Python stores text, numbers, and booleans, plus how its dynamic typing works (and differs from PHP).
Programming · Python
Starting a new beginner-to-intermediate series. Part 1 covers Python's basic syntax — running a script, the print() function, indentation, and comments.
Programming · PHP
Part 4 of the PHP series: conditional statements — make your programs decide with if, else, elseif, switch, and the handy ternary shortcut.
Programming · Systems & Networking
No server, no database, no monthly bill. Here's the whole path to a static website — build the files, preview locally, and put it online for free with HTTPS.
Programming · PHP
Part 3 of the PHP series: operators — arithmetic, assignment, comparison, and logic, the building blocks of every PHP program.
Programming · Systems & Networking
The site you're reading has no web server, no database, nothing to patch. Here's how 'static + edge' hosting works — and why it's faster and safer.
Programming · PHP
Part 2 of the PHP series: variables and constants — the two ways PHP stores information for you to use later in your programs.
Programming · PHP
What is PHP? PHP: Hypertext Preprocessor (PHP) is an open source general purpose scripting language that is widely used for web development and can be…