I have a dataframe in pandas containing datetime and float data.
time price1 price2
2018-02-01T00:00:00.000Z 1.4526547885 1.654775563
I need to convert the columns to string format such that the price1 and price2 columns shows number upto 4 decimal places and the time is displayed as: 01,02,2018 00:00:00
Any leads on this is appreciated. Thanks