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 trialROBERT BUTLER
2,010 PointsAdd a new route to hello() that expects a name argument. The view will need to accept a name argument, too.
Add a new route to hello() that expects a name argument. The view will need to accept a name argument, too.
2 Answers
ROBERT BUTLER
2,010 Points@app.route('/')
@app.route('/<name>')
def hello(name):
>>>>return 'Hello {}'.format(name)
Chris Freeman
Treehouse Moderator 68,454 PointsHey ROBERT BUTLER, you’re very close.
Two items to fix:
- the
return
statement needs to be indented to be inside the function. (Maybe this was just a cut and paste issue) - when adding the
name
parameter to the function, a default value needs to be defined so that in the “/“ route case,name
will be defined. Try usingname=“”
- be sure to use the exact punctuation stated in the challenge. It might be nothing or a ending period or exclamation point.
Post back if you need more help. Good luck!!!
ROBERT BUTLER
2,010 PointsI may still be doing something wrong with Chris. I keep getting the Bummer: IndentationError: @app.route('/') notification.
Chris Freeman
Treehouse Moderator 68,454 PointsCan you paste your latest code?
Chris Freeman
Treehouse Moderator 68,454 PointsChris Freeman
Treehouse Moderator 68,454 PointsROBERT BUTLER, I’ve reformatted your code to indent the
return
statement. The > should be replaced with spaces.