Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Ferdous 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 67,989 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.