📌  相关文章
📜  pandas 将所有列名转换为小写 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:28.926000             🧑  作者: Mango

代码示例1
# rename Pandas columns to lower case
df.columns= df.columns.str.lower()
df.columns
Index(['column1', 'column2', 'column3'], dtype='object')