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 trial

Python Technical Interview Prep: Python Basics Basic Python FizzBuzz

Noor Hafiza Binti Ibrahim
Noor Hafiza Binti Ibrahim
11,712 Points

Bummer: 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?

fizzbuzz.py
# 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
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey 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
Noor Hafiza Binti Ibrahim
11,712 Points
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)

#now i got a Bummer: I did't get the correct value returned. It should have been 32. Instead, it was 32.
#what else did i miss inside my code?
Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

Noor Hafiza Binti Ibrahim, you seem to have change the last return to str(num) from num. It should stay num.