本文介绍了将Python列表转换为pandas系列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
将Python字符串列表转换为pd.Series
对象的方法是什么?
What is the method to convert a Python list of strings to a pd.Series
object?
(可以使用tolist()
方法将pandas Series对象转换为列表,但是如何进行反向转换?)
(pandas Series objects can be converted to list using tolist()
method--but how to do the reverse conversion?)
推荐答案
我了解您的列表实际上是列表列表
I understand that your list is in fact a list of lists
import pandas as pd
thelist = [ ['sentence 1'], ['sentence 2'], ['sentence 3'] ]
df = pd.Series( (v[0] for v in thelist) )
这篇关于将Python列表转换为pandas系列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!