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.

Noor Hafiza Binti Ibrahim
11,712 PointsBummer: Uh oh, I didn't get the correct value returned. It should have been 50. Instead, it was 150
Your function will need to complete the math operation and return the result. example: mathy('divide', 15, 5) return 3
# enter your code below
def mathy(a, b, c):
add = b + c
return add
1 Answer

Chris Freeman
Treehouse Moderator 67,977 PointsHey Noor Hafiza Binti Ibrahim, the first parameter receives a string argument that is the name of a math operator. The function returns the result of this operator used between b
and c
.
An if/elif/else
statement works well here to match the operator string. The body of each code block could simply be returning the result of the math operation being applied. For example
if a == “divide”:
return b / c
elif ....
```Python
Post back if you need more help. Good luck!!!