5KY's Life
python 파이썬 - 오늘 날짜 출력하기 본문
python에서 오늘 날짜 출력하는 방법입니다.
from datetime import datetime
today = datetime.today().strftime("%Y%m%d")
print(today)
위의 코드를 실행하면
20210924 와 같은 형태로 출력됩니다.
728x90
반응형
'IT , Software > Python파이썬' 카테고리의 다른 글
Python파이썬 : Pycharm package install error (0) | 2022.04.06 |
---|---|
Python파이썬 : 크롬 드라이버(Chrome Driver) 다운로드 (0) | 2022.02.10 |
Python : pyautogui import 에러 (0) | 2022.01.26 |
python package version 확인하는 방법 (0) | 2021.11.14 |
Python파이썬 - investing.com의 챠트 이미지로 저장하기 (1) | 2021.09.25 |