gpt4 book ai didi

python - 如何从 excel 访问值,其中第一列是标题

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

我不熟悉使用 python 从 excel 访问数据。我需要这样的东西。

[Id:{1,2,3}, Name:{Raj,Rahul,Dave}, Age:{28,29,29}, City:{Delhi,Mumbai,Bengaluru}]

我需要 python 字典列表中的这种数据。

这是excel数据:

enter image description here

最佳答案

这是使用 pandas 库实现的方法:

import pandas as pd

df= pd.read_excel('your_file.xlsx')

df = df.T
df.columns = df.iloc[0]
df = df.drop(df.index[0])

df.to_dict()

输出:

{'Name': {1: 'Raj', 2: 'Rahul', 3: 'Dave'},
'Age': {1: 28, 2: 29, 3: 29},
'City': {1: 'Delhi', 2: 'Mumbai', 3: 'Bengaluru'}}

关于python - 如何从 excel 访问值,其中第一列是标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57671760/

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