programing

Python에서 현재 시간을 읽을 수있는 형식으로 표시하는 방법

nasanasas 2020. 9. 12. 10:08
반응형

Python에서 현재 시간을 읽을 수있는 형식으로 표시하는 방법


현재 시간을 다음과 같이 표시하려면 어떻게해야합니까?

12:18PM EST on Oct 18, 2010

파이썬에서. 감사.


첫 번째는 빠르고 더러운 방법이고 두 번째는 정확한 방법 (일광 절약 여부 인식)입니다.

import time
time.ctime() # 'Mon Oct 18 13:35:29 2010'
time.strftime('%l:%M%p %Z on %b %d, %Y') # ' 1:36PM EDT on Oct 18, 2010'
time.strftime('%l:%M%p %z on %b %d, %Y') # ' 1:36PM EST on Oct 18, 2010'

필요한 것은 문서에 있습니다.

import time
time.strftime('%X %x %Z')
'16:08:12 05/08/03 AEST'

다음과 같이 할 수 있습니다.

>>> from time import gmtime, strftime
>>> strftime("%a, %d %b %Y %H:%M:%S +0000", gmtime())
'Thu, 28 Jun 2001 14:17:15 +0000'

% 코드에 대한 전체 문서는 http://docs.python.org/library/time.html에 있습니다.


import time
time.strftime('%H:%M%p %Z on %b %d, %Y')

이것은 편리 할 수 ​​있습니다 : http://strftime.org/


http://docs.python.org/library/time.html에서 제공하는 시설을 살펴보십시오.

거기에 몇 가지 변환 기능이 있습니다.

편집 :datetime 더 많은 OOP 유사 솔루션에 대해서는 (http://docs.python.org/library/datetime.html#module-datetime)을 참조하십시오 . time위에 링크 라이브러리는 좀 필수적이다.


이 코드로 라이브 시간대를 얻을 수 있습니다.

import datetime
now = datetime.datetime.now()
print ("Current date and time : ")
print (now.strftime("%Y-%m-%d %H:%M:%S"))

참고 URL : https://stackoverflow.com/questions/3961581/in-python-how-to-display-current-time-in-Readable-format

반응형