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 1
how do i return the right number?
# enter your code below
def fizzbuzz(num):
for num in range(1,151):
if num %3 == 0:
return 'Fizz'
elif num %5 == 0:
return 'Buzz'
elif num %3 == 0 and num %5 == 0:
return 'FizzBuzz'
else:
return num
1 Answer

Chris Freeman
Treehouse Moderator 67,977 PointsHey Noor Hafiza Binti Ibrahim, I’ll leave a hint.
Walk through your code with num
at 15.
What will be returned? Why?
Hint: order matters!
Also, a for loop is not needed in the challenge. Simply use the num
passed into the function for evaluation.
Post back if you need more help. Good luck!!!
Noor Hafiza Binti Ibrahim
11,712 PointsNoor Hafiza Binti Ibrahim
11,712 PointsChris Freeman
Treehouse Moderator 67,977 PointsChris Freeman
Treehouse Moderator 67,977 PointsNoor Hafiza Binti Ibrahim, you seem to have change the last return to
str(num)
fromnum
. It should staynum
.Noor Hafiza Binti Ibrahim
11,712 PointsNoor Hafiza Binti Ibrahim
11,712 Pointsit works. Thanks!