While Loop in Python
September 11, 2020
n = 0
numbers = []
while n < 6:
print "At the top, n is %d" % n
numbers.append(n)
n = n + 1
print "Numbers now: ", numbers
print "At the bottom, n is %d" % n
print "The numbers: "
for num in numbers:
print num
Recent Entries
- Static at the Hydrogen Line May 8, 2026
- From Hands-Off to Pre-Deployment May 8, 2026
- Sleep, Branded May 8, 2026