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) Number Game App Even or Odd

I'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.

even.py
def even_odd(this):
    if this%2 == 0:
        return true
    elif this%2 != 0:
        return false

even_odd(5)

1 Answer

Aaron Price
Aaron Price
5,974 Points

Ah that one tripped me up a lot coming from other languages.

true and false should be True and False.

Damn, that was it. And here I was thinking I had no idea what I was doing.