flask 顯示四大名著

gamebus發表於2021-09-09
'''
在頁面上面顯示四大名著
'''

from flask import Flask, render_template

app = Flask(__name__)

@app.route('/')
def index():
    books = [
        {
            'book_name': '西遊記',
            'author': '吳承恩'
        },
        {
            'book_name': '紅樓夢',
            'author': '曹雪芹'
        },
        {
            'book_name': '水滸傳',
            'author': '施耐庵'
        },
        {
            'book_name': '三國演義',
            'author': '羅貫中'
        }
    ]
    return render_template('index.html', books=books)

if __name__ == "__main__":
    app.run(debug=True)




四大名著

    {% for book in books %}
    
    {% endfor %}
書名 作者
{{book.book_name}} {{book.author}}

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4687/viewspace-2808336/,如需轉載,請註明出處,否則將追究法律責任。

相關文章