Advertisement
elena1234

convert list column into string ( DataFrame )

Nov 17th, 2022 (edited)
798
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.07 KB | Source Code | 0 0
  1. df_movies['Stars'] = [','.join(map(str, l)) for l in df_movies['Stars']]
  2.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement