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

Python Python Basics All Together Now Branch and Loop

Yasmin Chiu
seal-mask
.a{fill-rule:evenodd;}techdegree
Yasmin Chiu
Python Development Techdegree Student 4,423 Points

While loop setup

For the setup of my while loop, I used:

while tickets_remaining > 0:

instead of the suggested, while tickets_remaining >= 1

Would this still work in the same way?

2 Answers

Hi, Yasmin. It should give exactly the same answers in this case. In some situations, those could be different values, but for this problem they will work the same. If the value could result in any number between 0 and 1, then >0 and <=1 would give different answers.