python 날짜 형식 문제datetime

최근에 파충류를 만들다가 시간 매개 변수를 만났는데 형식이 비교적 드물고,
시간 매개 변수 형식: Wed, 13 Jun 2018 07:39:31 GMT+0800(중국 표준시)
나는 이런 형식의 매개 변수를 출력하고 싶은데, 어떻게 조정합니까?코드는 다음과 같습니다.
import datetime
GMT_FORMAT = '%a, %d %b %Y %H:%M:%S GMT+0800 (      )'
print datetime.datetime.now().strftime(GMT_FORMAT)
#    :
'Wed Jun 13 15:37:16 2018'

기호:
%a 요일의 약자 Weekday name, abbr
%d 매월 며칠째 Day of the month
%b 월 약자 Month name, abbr.
%Y 년 Year number

좋은 웹페이지 즐겨찾기