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 Flask Basics Welcome to Flask Multiply View

Otec Perez Glass
Otec Perez Glass
7,678 Points

Need help!

Challenge 2

Question

Add a new route to multiply() that has two arguments. Add the same two arguments to the multiply() view. They should have defaults of 5.

I'm not sure what is the BUG in this code

ERROR MESSAGE

Bummer: Didn't get a 200 at /multiply

flask_app.py
from flask import Flask

app = Flask(__name__)


@app.route('/multiply')
@app.route('/multiplication/<num1>/<num2>')
def multiply(num1 = 5, num2 = 5):
    return "{}".format(num1*num2)

Hi Otec! I don't know if this will resolve the issue, but I do spy a typo. (.fomat instead of .format)

Otec Perez Glass
Otec Perez Glass
7,678 Points

Ilse Ackerman hope you are doing well and Thank you

def multiply(num1 = 5, num2 = 5):
    return "{}".format(num1*num2)

But sitll the error message

2 Answers

Your route should be multiply instead of multiplication. I was able to get past task 2 with the following:

@app.route('/multiply')
@app.route('/multiply/<num1>/<num2>')
def multiply(num1 = 5, num2 = 5):
    return "{}".format(5*5)
Daniel Smith
Daniel Smith
10,172 Points

why does this work with .format(5*5) but not .format(num1*num2)?

.format(num1*num2) does work I believe the user has to create a completely new route for this challenge to work