Another While Loop
April 6, 2018
As the title says, just another while loop for practice.
i = 0
numbers = []
while i < 7:
print "The number at the top is now: %d" % i
numbers.append(i)
i = i + 1
print "Numbers are now", numbers
print "The number at the bottom is now: %d" % i
print "The numbers:"
for num in numbers:
print num
Related Entries
- While Loop in Python September 11, 2020
- While Loop & Exit March 12, 2018
- A Payroll Number for the Loop May 24, 2026