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

Add 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

@app.route('/') 
@app.route('/<name>') 
def hello(name): 
>>>>return 'Hello {}'.format(name)
Chris Freeman
Chris Freeman
Treehouse Moderator 68,426 Points

ROBERT BUTLER, I’ve reformatted your code to indent the return statement. The > should be replaced with spaces.

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,426 Points

Hey 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 using name=“”
  • 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!!!

I may still be doing something wrong with Chris. I keep getting the Bummer: IndentationError: @app.route('/') notification.