我当时正在查看
Flask,并在他们的用户指南中找到了一个Python片段,如下所示
@app.route('/')
def show_entries():
cur = g.db.execute('select title, text from entries order by id desc')
entries = [dict(title=row[0], text=row[1]) for row in cur.fetchall()]
return render_template('show_entries.html', entries=entries)
这里
entries = [dict(title=row[0], text=row[1]) for row in cur.fetchall()]
从数据库创建条目列表.这是我第一次知道在括号内生成一个带循环的列表.
任何人都可以帮我指出我在哪里可以找到官方介绍.对于这样的语法?它仅限于列表但不是元组还是其他任何东西?
非常感谢.
S.
最佳答案 这个东西叫做列表理解
我认为这应该是官方文档:http://docs.python.org/tutorial/datastructures.html#list-comprehensions