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 32. Instead, it was 32
how do i fix my code to pass the challenge?
# enter your code below
def fizzbuzz(num):
if num % 3 == 0 and num % 5 == 0:
return 'FizzBuzz'
elif num % 3 == 0:
return 'Fizz'
elif num % 5 == 0:
return 'Buzz'
else:
return str(num)
2 Answers

Jason Anders
Treehouse Moderator 145,607 PointsYou've pretty much got it correct. The only thing causing the Bummer! is the final return
statement.
Here you just need to return the num
value as it is. So, instead of return str(num)
, you just need to return num
.
Extra note: Unless there is a very specific and purposeful reason, you should always return the value and type being entered. This is why you got the error. It was looking for an INT value of 32 but found a STR of 32.
Nice work! :)

Mohammed Saleh
Python Development Techdegree Student 2,989 Pointswhy this code is not working ...
def fizzbuzz(num1):
if num1 % 3 == 0 :
return "Fizz"
elif num1 % 5 == 0 :
return "Buzz"
elif num1 % 3 == 0 and num1 % 5 == 0:
return "FizzBuzz"
else:
return num1
Uh oh, I didn't get the correct value returned. It should have been FizzBuzz. Instead, it was Fizz