gpt4 book ai didi

python - 我已经在 python 中导入了一个 excel 文件,我正在尝试将第 7 行作为起始列。我需要隐藏前 6 行我该怎么做?

转载 作者:行者123 更新时间:2023-12-04 07:31:09 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





reading excel to a python data frame starting from row 5 and including headers

(2 个回答)


去年关闭。




我已经在 python 中导入了一个 excel 文件,我正在尝试将第 7 行作为起始列。我需要隐藏前 6 行。我怎样才能做到这一点?

import pandas as pd
df = pd.read_excel('C:/Users/sfreeman/Desktop/userexport.xls')
df
enter image description here

最佳答案

import pandas as pd
df = pd.read_excel('C:/Users/sfreeman/Desktop/userexport.xls', skiprows=6)
display(df)

关于python - 我已经在 python 中导入了一个 excel 文件,我正在尝试将第 7 行作为起始列。我需要隐藏前 6 行我该怎么做?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67922810/

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