import time
timestamp = time.strftime("%Y%m%d-%H%M%S")
timestamp
# 오늘 날짜만 가져오기
import time
timestamp = time.strftime("%Y%m%d-%H%M%S")
timestamp.split('-')[0]
'파이썬 > 날짜,시간 데이터 다루기' 카테고리의 다른 글
현재 시각 : now (0) | 2021.10.03 |
---|---|
날짜 더하기, 날짜 빼기 (0) | 2021.10.02 |
판다스에서 특정 컬럼을 데이터타임 형태로 변환하기 : pd.to_datetime(df['col']) (0) | 2021.09.29 |
str to datetime (0) | 2021.09.26 |