
prasanpaudyal
1,070 PointsMultiply View
What's wrong with this code?
from flask import Flask
app = Flask(__name__)
@app.route('/multiply')
def multiply():
return '5 * 5 = {}'.format(5*5)
1 Answer

Chris Freeman
Treehouse Moderator 58,896 PointsYou are very close. The challenge is not looking for the equation in the answer. Remove the "5 * 5 = " part and it should pass.
Post back if you need more help. Good luck!!
prasanpaudyal
1,070 Pointsprasanpaudyal
1,070 PointsNever mind I got it. The question was just looking for an answer.