在python中用波兰语中的月份名称格式化日期 [英] Format date with month name in polish, in python

查看:20
本文介绍了在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.

这篇关于在python中用波兰语中的月份名称格式化日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆