[Flask] request, jinja2 template를 이용한 python Dictionary collection
request, jinja2 template를 이용한 python Dictionary collection 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 from flask import Flask, render_template, request app = Flask(__name__) @app.route('/') def student(): return render_template('student.html') @app.route('/result',methods = ['POST', 'GET']) def result(): if request.method == 'POST': result = request.form return render_template("result.html",result = re..