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

santosh kumar peddineni
seal-mask
.a{fill-rule:evenodd;}techdegree
santosh kumar peddineni
Python Web Development Techdegree Student 2,661 Points

whats wrong in my code

i am unable to figure out why i am getting task one is no longer running

even.py
from random import randint

start = 5
while start != 5 and start > 0:
    a = random.randint(1, 99)
    if even_odd(a) == True:
        print("{} is even".format(a))
    else even_odd(a) == False:
        print("{} is odd".format(a))
    start = num - 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
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

The code is close to correct.

  • when importing a specific function (randint) from a module (random), it should be referenced directly and not with the module name as a prefix
  • the function definition even_odd needs to be defined before use. Move definition above while loop
  • else should be elif
  • the while loop never runs since start is 5 and start != 5 fails. Remove this condition
  • decrement start, not num

Post back if you need more help. Good luck!!!