How to edit CSV cell value using pandas.
I'm trying like this
obj.set_value(rowindex, 'C', val)
Where I expect the old value in row = rowindex and column = C i.e.. df[rowindex][C] should get replced by val and my original csv should get update. 
I know pandas provides, inplace=True, to do that, but set_value doesn't support that. How can I do this ?
 
     
    