1. ホーム
  2. python

Python でロケールの日付書式を設定する

2023-10-06 15:20:32

質問

どうすれば datetime.datetime.now() を母国語で印刷するにはどうしたらよいでしょうか。

    >>> session.deathDate.strftime("%a, %d %b %Y")
    'Fri, 12 Jun 2009'

同じ結果を現地語で得たいのですが。

どのように解決するのですか?

この例のように、ロケールを設定すればよいのです。

>>> import time
>>> print time.strftime("%a, %d %b %Y %H:%M:%S")
Sun, 23 Oct 2005 20:38:56
>>> import locale
>>> locale.setlocale(locale.LC_TIME, "sv_SE") # swedish
'sv_SE'
>>> print time.strftime("%a, %d %b %Y %H:%M:%S")
sön, 23 okt 2005 20:39:15