在python中用波兰语中的月份名称格式化日期

问题描述

在 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.

相关文章