原文来源:https://stackoverflow.com/questions/13021654/get-column-index-from-column-name-in-python-pandas

可以使用 .get_loc实现。

In [45]: df = DataFrame({"pear": [1,2,3], "apple": [2,3,4], "orange": [3,4,5]})

In [46]: df.columns
Out[46]: Index([apple, orange, pear], dtype=object)

In [47]: df.columns.get_loc("pear")
Out[47]: 2

转载于:https://www.cnblogs.com/everfight/p/pandas_column_name_index.html

Logo

有“AI”的1024 = 2048,欢迎大家加入2048 AI社区

更多推荐