Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Luke Podnar
1,929 PointsWhy won't my While Loop work
What I want it to do is to start counting up from 000000 by 1 and keep going but it won't work, Its not a indenting issue, I checked that.
num = 000000 while num: print(num) num += 1
1 Answer
Steven Parker
243,656 PointsSince you're starting with a zero value, "num" will test as "falsey" so the loop will not start. You could start with 1 instead, or just use "while True:" to create a continuous loop.
Also, you only need one digit to represent zero. The extra zeros will be ignored.
If you want to always display a minimum of 6 digits, you can use formatting:
print("{0:06}".format(num))