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 trialmike henning
1,384 PointsDid we go over any of this?
I don’t know if this is a bug or I’m not learning but i don’t think we went through multiply before this question ??
from flask import Flask
app = Flask(__name__)
app = Flask(__multiply__)
@app.route
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsHey mike henning, this challenge is asking you to:
- create a view (define a function),
- give the view a route (using
@app.route
decorator)
Later tasks will add additional routes, with various combinations of arguments. This is along the same lines as your previous post.
You do not need to redefine app
Post back if you need more help. Good luck!!!