일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- ubuntu
- 노드
- DB
- install
- JS
- 리눅스
- java
- 우분투
- 3.0
- 자바
- Linux
- 자바스크립트
- 하모니카
- DATABASE
- hamonikr
- javascript
- 파이썬
- script
- 아틀라시안
- PostgreSQL
- 데이터베이스
- python
- 스크립트
- Windows
- node
- 윈도우
- postgres
- Atlassian
- 설정
- 설치
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
Python 날짜 및 시간 본문
반응형
참고 : https://python.bakyeono.net/chapter-11-3.html#1132-%EB%82%A0%EC%A7%9C%EC%99%80-%EC%8B%9C%EA%B0%81
import time
from datetime import date, time, datetime
today = date.today().strftime('%Y%m%d')
time = datetime.now().strftime('%H%M%S')
print(today)
print(time)
# 두 날짜 차이 계산
get_date = date(2020, 2, 10)
diff_day = int(str(date.today() - get_date).split(' day')[0])
print(diff_day)
기호 | 의미 | 출력 예(2001-02-03 04:05:06 기준) |
%Y | 년 (네 자리) | 2001 |
%y | 년 (두 자리) | 01 |
%m | 월 (두 자리) | 02 |
%d | 일 (두 자리) | 03 |
%A | 요일 | Saturday |
%H | 시 (24시간) | 04 |
%I | 시 (12시간) | 04 |
%p | 오전, 오후 | AM |
%M | 분 (두 자리) | 05 |
%S | 초 (두 자리) | 06 |
%f | 마이크로초 | 000000 |
%% | % 기호 | % |
반응형
Comments