Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のビューでは、0 ~ 5 の数字を 0.5 刻み (つまり、0、0.5、1、1.5 など) で生成できる必要があります。for小枝のループを使って箱から出してそれを行う方法はありますか?
for
小枝のドキュメントの例2に基づいて、できるはずです
{% for i in range(0, 5, 0.5) %} {{ i }}, {% endfor %}