Search posts, tags, users, and pages
Sabin Sim
Coding, Learning, Growing โ one project at a time
01. Basic Structure of a while Loop Repeats as long as the condition is True Stops when the condition becomes False count = 1 while count <= 5: print("Hello", count) count += 1 ๐ Output: Hello 1 Hello 2 Hello 3 Hello 4 Hello 5 02. Inf...
Lamri Abdellah Ramdane
Developer passionate about clean code, open source, and exploring new tech.
Nice mini-project ideas with while loops โ very hands-on! I like to keep my dev setups clean when switching between projects, so Iโve been using ServBay (servbay.com) to spin up isolated environments without messing up global installs.
while
Lamri Abdellah Ramdane
Developer passionate about clean code, open source, and exploring new tech.
Nice mini-project ideas with
whileloops โ very hands-on! I like to keep my dev setups clean when switching between projects, so Iโve been using ServBay (servbay.com) to spin up isolated environments without messing up global installs.