반응형
현재 년, 월, 일, 시, 분, 초 문자열로 표현하기 (yyyymmddhh24miss 형태)
## 시간 표시 #####################################
import time
import datetime
now = datetime.datetime.now()
nowStr = "{:%Y%m%d%H%M%S}".format(now)
timeserise = time.time()
timeserise = str(int(timeserise))
#print(timeserise)
print(now)
print(" 년월일시분초 :" + nowStr)
#################################################
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[python] 현재 작업 중인 경로 확인 - os.getcwd() (0) | 2022.02.03 |
---|---|
[python] conda, pip pandas install (0) | 2022.02.03 |
NLTK 에러시 - Resource punkt not found 일때 (0) | 2022.01.26 |
NLTK 설치 - 아나콘다 anaconda. 데이터 검색 (0) | 2022.01.26 |
[오류]conda: 'conda' 용어가 cmdlet,함수,스크립트 파일 또는 실행할 수 있는 프로그램 이름으로 인식되지 않습니다. - VSCODE (0) | 2022.01.25 |