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

What's wrong with line 4? Also do you see anything else that needs work?

Can you please help me?

even.py
import random
def even_odd(num):
    start = 5  
while 5 = True:
    random.randint(, 99)
    start -= 1
if return not num % 2:
    print("{} is even".format(num))
else:
    print("{} is odd".format(num))

1 Answer

Steven Parker
Steven Parker
230,995 Points

There are a number of issues on that line:

  • you can't assign something to a number
  • the assignment("=") was probably intended to be a comparison ("==")
  • a number will never equal the boolean value True
  • the loop should be checking the value of "start" instead of a fixed number
  • when checking a value for "truthiness" you just name it and not compare it to anything

Some other hints for this challenge:

  • don't modify the provided "even_odd" function
  • but you can call the function to test your numbers
  • do all the new work outside of the function
  • be sure to give "randint" two arguments
  • everything that is part of a loop body must be indented more than the loop itself

I don't get what I am suppose to do? Please explain in more detail.