#!/usr/bin/env python # coding: utf-8 # # Chapter 04 Date and Time # # In[1]: # 01 데이트타임 라이브러리(datetime Library) brian = "Always look on the bright side of life!" # In[2]: # 02 현재 시간과 날짜 가져오기 from datetime import datetime now = datetime.now() print (now) # In[3]: # 03 정보 추출하기 now = datetime.now() print (now.year) print (now.month) print (now.day) # In[4]: # 04 날짜 정보 다듬기 now = datetime.now() print (str(now.month) + "/" + str(now.day) + "/" + str(now.year)) # In[5]: # 05 시간 정보 다듬기 now = datetime.now() print (str(now.hour) + ":" + str(now.minute) + ":" + str(now.second)) #print (str(now.month) + "/" + str(now.day) + "/" + str(now.year)) # In[6]: # 06 마무리 now = datetime.now() print (str(now.month) + "/" + str(now.day) + "/" + str(now.year), str(now.hour) + ":" + str(now.minute) + ":" + str(now.second)) # In[7]: now