在py文件同级下 建立templates文件夹,再文件夹中编写html文件 1 向模版中传递参数: ''' 1 向模板传送 参数 ''' @app.route('/') def index(): name = 'Python' context = { 'name':'Python', 'age' : 18 , 'num_list': [1,2,3,4,5,6,7,8,9,10] } return render_template('index.html',context=context,name=…