Question 10
Consider the following Flask code.
from flask import Flaskimport sys
app = Flask(__name__)
# Read multiplier from command-lineMULTIPLIER = int(sys.argv[1]) if len(sys.argv) > 1 else 1
@app.route('/multiply/<int:number>')def multiply(number): return f"Result: {number % MULTIPLIER}"
if __name__ == '__main__': app.run()What will be the output when you run the following code in the terminal python app.py 5 and then access in the browser with the following link http://localhost:5000/multiply/4 ?
Result: 20
Result: 1
Result: 5
Result: 4