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.

Laknath Gunathilake
1,860 Pointscan't seem to pass the challenge
when I run the code it says TypeError: even_odd() takes 0 positional arguments but 1 was given
def even_odd():
number=int(input("enter number:"))
if number%2==0:
return True
else:
return False
1 Answer

Grigorij Schleifer
10,364 PointsHi Laknath,
you can use this code:
you don´t need to ask the user for the number . Give the number as a method argument for the even_odd method.
def even_odd(number):
# number is the methods argument
The rest ist fine :)
Grigorij
Laknath Gunathilake
1,860 PointsLaknath Gunathilake
1,860 PointsThanks
Grigorij Schleifer
10,364 PointsGrigorij Schleifer
10,364 PointsHey Laknath,
you are welcome !
G