logo

Crowdly

Browser

Add to Chrome

次のプログラムで @app.route('/') の役割として正しいのは? #プログラム from flask import Flask ...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

次のプログラムで@app.route('/') の役割として正しいのは?

#プログラム

from flask import Flask

app = Flask(__name__)

@app.route('/')

def hello():

    return '<h1>こんにちは、Flask!</h1>'

if __name__ == '__main__':

    app.run(debug=True) 

More questions like this

Want instant access to all verified answers on blend.el-kait.jp?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome