본문 바로가기

Python

Package datetime

 

지시자 의미 예제
%a 요일 (약칭)  (en_US): Sun, Mon, ..., Sat
%A 요일 (en_US): Sunday, Monday, ..., Saturday
%w 요일을 숫자로 (일요일: 0, 토요일: 6) 0, 1, ..., 6
%d 0 이 패딩 된 날짜 01, 02, ..., 31
%b 월 (약칭) (en_US): Jan, Feb, ..., Dec
%B (en_US): January, February, ..., December
%m 0 이 패딩 된 달 01, 02, ..., 12
%y 몇 세기가 없는 년도  00, 01, ..., 99
%Y 년도 2021, 2022, ..., 9999
%H 시간  00, 01, ..., 23
%I 시간 00, 01, ..., 12
%p    
%M    
%S    
%f    
%z    
%Z    
%j    
%U    
%W    
%c    
%x    
%X    
%%    

'Python' 카테고리의 다른 글

[python] bearing  (0) 2024.03.27
[python] haversine distance  (0) 2024.03.27
python. io 성능  (0) 2023.10.04
python. shallow/deep copy  (0) 2023.10.04
python. 유용한 코드  (0) 2023.09.07