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 Comparison Solution

this code below doesn't display the exception error when I enter text instead of an integer ?

name = input("Please enter your name: ") number = int(input("Please enter a number: "))

try:

if number%3==0: print ("fizz") elif number%2==0: print ("buzz") elif number%3 and number%2==0: print("fizzbuzz") else: print("sorry {} your number isn't divisible by 2 or 3".format(name))

except ValueError: raise ValueError("please enter a number")

1 Answer

Steven Parker
Steven Parker
230,946 Points

For the exception to be handled, the "int" function call must be inside the "try" area.

And when posting code, use Markdown formatting to preserve the code's appearance and retain special symbols.