I have written the this code in jupyter notebook using python 3. The second column in my dataFrame is of type list. I am writing it into .csv format using the following code :
network.to_csv("network.csv", sep='\t') where "network" is my dataframe.
When I open "network.csv" file using :
pd.read_csv(...). Then the second column is getting converted to type string and I want it to be a list as it was before. I am new to this. How should I go about it?
EDIT :
This the screenshot of the command I used to read the csv file.