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 trialHend Elshaarawi
434 PointsAnswer odd number
Anyone who knows the correct answer? Thank you in advance!
def is_odd(value):
if num % 2 == 1:
return True
else:
return False
2 Answers
Brandon White
Full Stack JavaScript Techdegree Graduate 35,771 PointsHi Hend,
Your answer is almost perfect. Really great job.
The only thing that's causing your code to not pass is the fact that in your if statement you're checking if the variable num divided by two leaves you with a remainder of one. But num is undefined, the argument you pass into the function is stored in the variable value (as that is the name of the parameter you've given in your function definition).
Instead of checking: if num % 2 == 1:...
, check: if value % 2 == 1:...
.
Make that minor change, and you should be good to go. Nice work.
Caesar Bell
24,827 PointsThis also worked for me.
def is_odd(value): if value % 2 != 0: return True else: return False
Hend Elshaarawi
434 PointsHend Elshaarawi
434 PointsThank you so much for your positive energy! It totally makes sense!