<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> body { text-align: center; background: pink; {#line-height: 100px;#} } </style> </head> <body> <ul> {% for book in books reversed %} <li>{{ book }}</li> {% endfor %} </ul> <ul> {% for v in person.values %} <li>{{ v }}</li> {% endfor %} {% for k in person.keys %} <li>{{ k }}</li> {% endfor %} {% for k,v in person.items %} <li>{{ k }}/{{ v }}</li> {% endfor %} </ul> </body> </html>
原文地址:https://www.cnblogs.com/randomlee/p/10291487.html
时间: 2024-11-06 10:01:45