project-based-learning
project-based-learning copied to clipboard
Typo in project "Build A Simple Web App With Flask"
Expected Behavior
''' from flask import Flask app = Flask(name)
@app.route("/") def index(): return "Index!"
@app.route("/hello") def hello(): return "Hello World!"
@app.route("/members") def members(): return "Members"
@app.route("/members/string:name/") def getMember(name): return name</string:name>
if name == "main": app.run() ''' Should create a simple flask application
Current Behavior
There is a syntax error in the code due to an incorrect closing tag </string:name> inside the route decorator.
Please assign me, I will have alook into this. Thanks
where is whole code by the way