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 trialDan Holroyd
1,172 PointsI'm not sure if I'm not doing this correctly or just not doing it the way the workspace wants it done.
Maybe I've made it overly complicated.
def even_odd(this):
if this%2 == 0:
return true
elif this%2 != 0:
return false
even_odd(5)
1 Answer
Aaron Price
5,974 PointsAh that one tripped me up a lot coming from other languages.
true and false should be True and False.
Dan Holroyd
1,172 PointsDan Holroyd
1,172 PointsDamn, that was it. And here I was thinking I had no idea what I was doing.