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.

annikaheflin
577 PointsWhat's wrong with line 4? Also do you see anything else that needs work?
Can you please help me?
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
216,136 PointsThere 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
annikaheflin
577 Pointsannikaheflin
577 PointsI don't get what I am suppose to do? Please explain in more detail.