Flask - Ecosystem and Patterns
Given this Flask app code, what will be the output when accessing the root URL
/?
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return 'Welcome to Flask!'