gpt4 book ai didi

python - 如何从 excel 中检索数据并在 python 中格式化它们?

转载 作者:太空宇宙 更新时间:2023-11-04 08:41:59 25 4
gpt4 key购买 nike

我正在尝试从 excel 中检索数据并将它们放入 python 中的以下格式:

 dataset={
'User A': {'Lady in the Water': 2.5,
'Snakes on a Plane': 3.5,
'Just My Luck': 3.0,
'Superman Returns': 3.5,
'You, Me and Dupree': 2.5,
'The Night Listener': 3.0},

'Gene Seymour': {'Lady in the Water': 3.0,
'Snakes on a Plane': 3.5,
'Just My Luck': 1.5,
'Superman Returns': 5.0,
'You, Me and Dupree': 3.5,
'The Night Listener': 3.0
}}

excel文件的样子

                User A  User B
Lady in the Water 2.5 3
Snakes on a Plane 3.5 3.5
Just My Luck 3 1.5
Superman Returns 3.5 5
You, Me and Dupree 2.5 3.5
The Night Listener 3 3

最佳答案

pandas 模块让这个变得非常简单:

import pandas as pd
df = pd.read_excel('workbook.xlsx', index_col=0)
dataset = df.to_dict()

在这段代码中,pd.read_excel 函数从 excel 文件中收集所有数据并将其存储到 pandas 中 DataFrame多变的。数据框带有大量非常强大的 built-in methods for data reorganization and manipulation .其中一种方法是 to_dict,它在此处的代码中用于将数据转换为嵌套字典。

关于python - 如何从 excel 中检索数据并在 python 中格式化它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44135248/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com