python书籍
<以下是通过for book in books遍历方式获取的书籍数据> <以下是通过books.0这样的方式获取的书籍数据>四大名著
- {% for book2 in books2 %}
- {{ book2 }} {% endfor %}
中国名人
- {% for person,personvalue in persons.items %}
- {{person}} : {{personvalue}} {% endfor %}
电影
序号 | 电影名称 | 票房 | 导演 |
---|---|---|---|
{{forloop.counter}} | {{ movie.name }} | {{ movie.box_Office }} | {{ movie.Director }} | {% endfor %}
评论信息
- {% for comment in comments%}
- {{comment}} {%empty%}
- 没有任何评论 {%endfor%}
水果商品
{% with gd=goods.0%}{{gd}}
{%endwith%}学生姓名
{% with students.0 as st1%}{{st1}}
{%endwith%}