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 trialLynn Overall
1,256 Pointswhile start: if numb=even_odd(random.randint(1,99)): print("{} is even").format(numb) start -=1
I know this will work so what is missing
import random
def even_odd(num):
# If % 2 is 0, the number is even.
# Since 0 is falsey, we have to invert it with not.
return not num % 2
start=5
while start:
if numb=even_odd(random.randint(1,99)):
print("{} is even").format(numb)
start -=1
1 Answer
Steve Hunter
57,712 PointsHi Lynn,
Most of that is fine; good work. But it's not quite there.
Try this ...
Import random.
Set start
to 5.
Create a while
loop that runs while start
isn't false.
Inside the loop assign a random number to a variable. Call it numb
for the hell of it.
Test if
the variable, numb
, is even/odd by passing it to the provided method.
If it is even print the even string, else print the odd string. Don't close the print
parenthesis prior to calling .format()
on the string:
print("{} insert var").format(var) # wrong
print("{} insert var".format(var)) # correct
Deduct 1 from start
.
That should see you right - else shout.
Let me know how you get on.
Steve.