What will be the result of visiting http://localhost:5000/he…
What will be the result of visiting http://localhost:5000/hello?name=Alice in the browser given the following Flask app? from flask import Flask, request app = Flask(__name__) @app.route(‘/hello’) def hello(): name = request.args.get(‘name’, ‘World’) return f”Hello, {name}!” if __name__ == ‘__main__’: app.run()
Read Details