728x90

from datetime import datetime

datetime.today().strftime("%Y%m%d%H%M%S")    # YYYYmmddHHMMSS 형태의 시간 출력

datetime.today().strftime("%Y/%m/%d %H:%M:%S")  # YYYY/mm/dd HH:MM:SS 형태의 시간 출력

어제 날짜

yesterday = datetime.today() - timedelta(1)

print(yesterday.strftime("%Y-%m-%d")

728x90

'Python' 카테고리의 다른 글

python upbit return 딕셔너리  (0) 2021.01.25
python cursor execute parameters  (0) 2021.01.25
'Connection' object has no attribute 'cursors'  (0) 2021.01.25
df index to column  (0) 2021.01.25
df 평균 표준편차  (0) 2021.01.25

+ Recent posts