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.
我试图简单地将字节大小呈现为以人类可读格式描述它的字符串:
$ python -c "import jinja2 ; print jinja2.Template(\"{{ bytes|filesizeformat }}\").render(bytes=1572864)" 0.0 MB
不幸的是,我总是得到0.0 MB结果。为什么我没有得到真正的价值?
0.0 MB
filesizeformat过滤器已在2.7 版中修复
filesizeformat
但是,修复非常简单,只涉及两行代码,您可以自己实现。见这里。