FlaskにおいてViewとTemplateの連携を行うために
python
1# coding: utf-8 2from flask import Flask, render_template 3 4app = Flask(__name__) 5 6@app.route('/') 7def index(): 8 name = 'geometry' 9 return render_template('index.html', name==name) 10 11# main function 12if __name__ == '__main__': 13 app.run(debug=True)
これを書いたところ
problem
1Too many positional argument for function call
となってしまいました。
どこがいけないのでしょうか。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。