templates の中だと <p>{{ 999999|intcomma }}<\p>
とかで 999,999
と表示できるけど templates 以外で使いたい
>>> from django.contrib.humanize.templatetags.humanize import intcomma >>> intcomma(100000000) u'100,000,000'
ふつうにそのままな感じでいけた
牌語備忘録 -pygo
templates の中だと <p>{{ 999999|intcomma }}<\p>
とかで 999,999
と表示できるけど templates 以外で使いたい
>>> from django.contrib.humanize.templatetags.humanize import intcomma >>> intcomma(100000000) u'100,000,000'
ふつうにそのままな感じでいけた