在 python 中(或在 django 模板中)是否有一种开箱即用的方式来格式化一个符合波兰语规则的完整月份名称的日期?
Is there an out of the box way to format in python (or within django templates), a date with full month name in accordance to polish language rules?
我想得到:
6 września 2010
而不是:
>>> datetime.today().date().strftime("%d %B %Y")
'06 wrzesień 2010'
使用 通天塔:
>>> import babel.dates
>>> import datetime
>>> now = datetime.datetime.now()
>>> print(babel.dates.format_date(now, 'd MMMM yyyy', locale='pl_PL'))
6 września 2010
更新:纳入 Nathan Davis 的评论.
Update: Incorporated Nathan Davis' comment.
这篇关于在python中用波兰语中的月份名称格式化日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!