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 trialNoor 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,860 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