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 trialPedro Meio-Dia
3,896 PointsMake a while loop that runs until start is falsey.
What do I wrong, please?
import random
def even_odd(num):
start = 5
return not num % 2
while start <=5:
num = random.randint(1,99)
if num % 2 = 0:
print('{} is even'.format(num))
start -= 1
else:
print('{} is odd'.format(num))
# If % 2 is 0, the number is even.
# Since 0 is falsey, we have to invert it with not.
1 Answer
Steven Parker
231,236 PointsIt looks like you added code to the even_odd function.
Your code should go after the function, so the first line of the new code won't be indented. Skipping a blank line after the function wouldn't hurt, either.
Also, when you test that something is not "falsey", you just name it. You don't need any comparison expression.