python 将元组列表,字典转换为数据帧

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 将元组列表,字典转换为数据帧相关的知识,希望对你有一定的参考价值。

# convert list of tuples to dataframe
a = []
a.append(('a',1))
a.append(('b',2))
pd.DataFrame(a)

# convert dictionary to dataframe
a = {'a':1, 'b':2}
pd.DataFrame(list(a.items()), columns = ['col1','col2'])
# another way
new_dict = {'key 1': 'value 1', 'key 2': 'value 2', 'key 3': 'value 3'}
pd.DataFrame([new_dict])

以上是关于python 将元组列表,字典转换为数据帧的主要内容,如果未能解决你的问题,请参考以下文章

Python:将元组列表转换为dict列表

将元组列表转换为字典

Python:将元组列表转换为对象列表?

将元组列表转换为python中的列表

使用 python 将元组转换为 JSON [关闭]

《python可以这样学》第二章