I followed the following procedure: In Python, how do I convert all of the items in a list to floats? because each column of my Dataframe is list, but instead o
list
You can use applymap method:
applymap
df = df.applymap(str)