pandas interpret cells as list

Solutions on MaxInterview for pandas interpret cells as list by the best coders in the world

showing results for - "pandas interpret cells as list"
Andrea
23 Jan 2020
1>>> from ast import literal_eval
2>>> literal_eval('[1.23, 2.34]')
3[1.23, 2.34]