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 trialFerdous Hossain Fahim
687 Pointstask 1 is no longer passing
Says task 1 is no longer passing,also is this how i should write the while statement? Pls help
import random
Start=5
while True:
number=random.randint(1,99)
if num%2=0:
print("{} is even").format(number)
else
print("{} is odd").format(number)
start=start-1
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
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsThe error "Task 1 is no longer passing" usually implies a syntax error has been introduced in the new code.
• "Start" is capitalized. This means "start" in the while
loop is undefined. Change to lowercase.
• "num" is undefined. This should be "number"
• the if
test condition needs a double-equals ==
• the else
is missing a colon :
• the .format()
needs to immediately follow the string. Currently it's trying to run the method on the output of the print
function.
• the while
loop runs forever. Try while start:
I think that's all. Post back if you need more help. Good luck!
Todd East
Courses Plus Student 3,602 PointsTodd East
Courses Plus Student 3,602 PointsThank you, this has helped me a great deal.