Is there a direct approach to format numbers in ji

2019-03-09 16:18发布

I need to format decimal numbers in jinja2.

When I need to format dates, I call the strftime() method in my template, like this:

{{ somedate.strftime('%Y-%m-%d') }}

I wonder if there is a similar approach to do this over numbers.

Thanks in advance!

4条回答
SAY GOODBYE
2楼-- · 2019-03-09 16:47

You can do it simply like this, the Python way:

{{ '%04d' % 42 }}

{{ 'Number: %d' % variable }}

Or using that method:

{{ '%d' | format(42) }}

I personally prefer the first one since it's exactly like in Python.

查看更多
淡お忘
3楼-- · 2019-03-09 16:55

Formatting and padding works well in the same way.

{{ "{0}".format(size).rjust(15) }}
查看更多
戒情不戒烟
4楼-- · 2019-03-09 17:11

You could use round it will let you round the number to a given precision usage is:

 round(value, precision=0, method='common')

The first parameter specifies the precision (default is 0), the second the rounding method from which you can choose 3:

'common' rounds either up or down
'ceil' always rounds up
'floor' always rounds down
查看更多
对你真心纯属浪费
5楼-- · 2019-03-09 17:12

I want to highlight Joran Beasley's comment because I find it the best solution:

Original comment:

can you not do {{ "{0:0.2f}".format(my_num) }} or {{ my_num|format "%0.2f" }} (wsgiarea.pocoo.org/jinja/docs/filters.html#format) – Joran Beasley Oct 1 '12 at 21:07`

Indeed, {{ '{0:0.2f}'.format(100) }} works fantastically.

This is just python string formatting. Given the first argument, {0}, format it with the following format 0.2f.

查看更多
登录 后发表回答