I have a dataframe df as:
                        Col1          Col2
Date                                      
2014-06-06              43.69         4.67
2014-06-09              45.47         4.70
2014-06-10              43.19         4.72
2014-06-11              47.58         4.64
I have another datafrmae df2 as:
              Col1       Col2                 
0              2         .5
I want to divide df with df2 to get the following:
But I am not sure how to perform this in a pythonic way?

 
     
    