from datetime import datetime
# 날짜 가져오기
today = datetime.now()
mytime = today.strftime('%Y-%m-%d-%H-%M-%S')
print(mytime) ## 2022-04-28-13-54-41
mytime2 = today.strftime('%Y년-%m월-%d일-%H시-%M분-%S초')
print(mytime2) ## 2022년-04월-28일-13시-54분-41초
'프로그래밍 > Python' 카테고리의 다른 글
셀레니움 사용법 (with. python) (0) | 2022.05.02 |
---|---|
Jinja2 템플릿 언어란? (사용법) (0) | 2022.04.29 |
f-string (python) (0) | 2022.04.28 |
파일 업로드 (python) (0) | 2022.04.28 |
POST연습 (0) | 2022.04.22 |