#!/usr/bin/env python # coding: utf-8 # # Dates and Times # * Basics # * strftime # * strptime # * timedelta # ## Basics # In[4]: from datetime import datetime, date, time # In[5]: year = 2017 month = 8 day = 29 hour =18 minute = 4 second = 15 # In[6]: dt = datetime(year, month, day, hour, minute, second) # In[7]: dt.hour, dt.minute, dt.second # Extract the equivalent date object: # In[8]: dt.date() # Extract the equivalent time object: # In[9]: dt.time() # When aggregating or grouping time series data, it is sometimes useful to replace fields of a series of datetimes such as zeroing out the minute and second fields: # In[10]: dt.replace(minute=0, second=0) # ## strftime # Format a datetime string: # In[11]: dt.strftime('%m/%d/%Y %H:%M') # ## strptime # Convert a string into a datetime object: # In[13]: datetime.strptime('20170829', '%Y%m%d') # ## timedelta # Get the current datetime: # In[14]: dt_now = datetime.now() # Subtract two datetime fields to create a timedelta: # In[15]: delta = dt_now - dt delta # Add a datetime and a timedelta to get a new datetime: # In[16]: dt + delta # In[ ]: