gpt4 book ai didi

python - 试图用 Pandas 中的列名获取列索引

转载 作者:行者123 更新时间:2023-12-04 03:59:23 28 4
gpt4 key购买 nike

我正在做一个带有嵌入式 jupyter notebook 的项目,当我打开 df.info() 时,它没有标题,也没有索引号。我尝试执行 df.info(verbose=True) 但仍然没有执行。在我的桌面上,当我执行 df.info() 时,它的列标题显示:#、列、非空计数和 dtype。我只是想获取每个列名及其相应索引值的列表。有更好的方法吗?

我想看到它

0 列 1 名称1 Column2Name...等

最佳答案

i = 0
for col in df.columns:
print(i, col)
i += 1

关于python - 试图用 Pandas 中的列名获取列索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63320053/

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