datetime 썸네일형 리스트형 python 유용한 모듈 1 : datetime datetime모듈은 현재시간과 날짜를 알수있다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 import datetime now = datetime.datetime.now() print now.year # 년도 print now.month # 월 print now.day # 일 print now.hour # 시 print now.minute # 분 print now.second # 초 # 출력 # 2016 # 8 # 5 # 19 # 9 # 57 cs 이런식으로 사용하면된다 한줄로 정리하면 1 2 3 4 5 6 7 import datetime now = datetime.datetime.now() print("%04d/%02d/%02d %02d:%02d:%02d "%(now... 더보기 이전 1 다음