Quiz Question 1 of 6
from flask import Flask
app = Flask()
@app.route('/')
def index():
return "Hello from Pet Adoption"
if __name__ == '__main__':
app.run(debug=True, port=8000, host='127.0.0.1')
What is incorrect in the code above?
Choose the correct answer below: