본문 바로가기
파이썬

파이썬 Python의 로케일 날짜 형식

by º기록 2020. 9. 17.
반응형

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

 

참조 페이지 https://stackoverflow.com/questions/985505

 

 

반응형

댓글