Convert a columns of string to list in pandas

前端 未结 4 1142
不思量自难忘°
不思量自难忘° 2020-12-03 15:27

I have a problem with the type of one of my column in a pandas dataframe. Basically the column is saved in a csv file as a string, and I wanna use it as a tuple to be able t

4条回答
  •  有刺的猬
    2020-12-03 16:13

    Use str.strip and str.split:

    df['LABELS'] = df['LABELS'].str.strip('()').str.split(',')
    

    But if no NaNs here, list comprehension working nice too:

    df['LABELS'] = [x.strip('()').split(',') for x in df['LABELS']]
    

提交回复
热议问题