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 (2015) Letter Game App Even or Odd Loop

Challenge Error - Task 1 is not passing

I am getting error that task 1 is not passing. What is this error?

even.py
import random
start = 5
while start:
    N = random.randint(1,99)
    if even_odd(N):
        print("{} is even".format(N))
    else:
        print("{} is odd".format(N))
    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

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Uday! First, you're doing terrific. Your syntax and logic are pretty spot on, but it's your ordering that's a bit off. You were meant to write that while loop below the definition of the even_odd function. If you try running your code as it is now, through step 1, you will get back this:

Bummer! name 'even_odd' is not defined

You've run into the most common reason for getting a "Task 1 is no longer passing" and it is due to a syntax error. When this happens, your code can no longer be interpreted at all, thus invalidating all code there.

In this case, you're trying to use the even_odd function in the while loop, but that function isn't defined until after the loop. Try moving your even_odd function back to the top of the file. When I do this, your code passes all steps.

Hope this helps! :sparkles:

Jennifer Nordell ...Thanks...I am used to MATLAB....I used ordering pattern like MATLAB....Now I got it...Thanks again..