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 trialBotshelo Tsogo Tiroyamodimo
3,057 PointsCreating a function that shows if a number is odd
What iam i doing wrong,
value = 11
def is_odd(value):
10 % 2 =! 0
return True
1 Answer
Maxwell Newberry
7,693 PointsWhen you call a method, the value of value
in your is_odd()
method becomes whatever is passed. Additionally, your conditional operators should be flipped to !=
, which means not equal to. Finally, the value we are returning is whether or not the passed value is odd which means we are returning a boolean (True or False).
value = 11
def is_odd(value):
return value % 2 != 0