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 trialEmanuele Bonura
4,777 PointsBug in exercise 2?
I think I've got a bug or I'm missing something, 10*10 should be 100 but it checks for 200?:
Bummer: Didn't get a 200 at /multiply/10/10
from flask import Flask
app = Flask(__name__)
@app.route('/multiply')
@app.route('/multiply/<arg1>/<arg2>')
def multiply(arg1=5, arg2=5):
return str(arg1*arg2)
1 Answer
Steven Parker
231,236 PointsThe error message might be misleading, but the code issue is that the incoming arguments are strings and must be converted to numbers before performing math on them.
If you believe the message could be improved to make the situation more clear, you can make suggestions directly to the staff as described on the Support page.
Jennifer Nordell
Treehouse TeacherJennifer Nordell
Treehouse TeacherSteven Parker I'm pretty sure the message is not a bug. It's referring to the HTTP status... not the result of the multiplication