df.loc[dates[0]] # getting a cross section using a label df.loc[:,['A','B']] # Selecting on a multi-axis by label df.loc['20130102':'20130104',['A','B']] # Showing label slicing, both endpoints are included