
hello world
132 PointsI'm unable to solve this exceresise help me out
Please solve the last part of the exercise for me.
from flask import Flask
app = Flask(__name__)
@app.route('/multiply')
@app.route('/multiply/<x>/<y>')
def multiply(x=5, y=5):
return str(x * y)
csr13
Courses Plus Student 33,093 Pointscsr13
Courses Plus Student 33,093 PointsAvoid asking people to do your challenges.
That said, try changing your routes to something like this: