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 trialCam S
8,440 Pointsthe troubleshooting for this is incredibly useless. what does it want me to do?
i have tried so many different possibilities. the 'bummer' notification is amazingly ambiguous about what i need to correct.
@app.route('/multiply')
def multiply():
return '5 * 5'
@app.route('/multiply/<int:num1>/<int:num2>')
def multiply(num1, num2):
return '{} * {} = {}'.format(num1, num2, num1*num2)
these are the two responses i have given and altered a bunch, but to no success. any help would be appreciated. thanks.
from flask import Flask
app = Flask(__name__)
@app.route('/multiply/<int:num1>/<int:num2>')
def multiply():
return '5*5'
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsHey Cam S, the challenge is looking for a string containing the results from int
math 5 * 5. Linke str(5 * 5)
Post back if you need more help. Good luck!!!
Cam S
8,440 PointsCam S
8,440 Pointsi made it to the last question but can't seem to figure out what's wrong. tried placing str() and int() across several different areas (i was desperate, ha) but no luck. it's particularly puzzling because my answer is identical in format to 'The Adder' video, which preceded this challenge:
thanks for the reply, hope you find something missing that i'm too blind to see. cheers
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsAlmost there!
5
instead of’5’