加载包并创建一个示例数据框:

import pandas as pd
data = {
    'Name': ['Alice', 'Bob', 'Charlie', 'David', 'Eva'],
    'Age': [24, 27, 22, 32, 29],
    'City': ['New York', 'Los Angeles', 'Chicago', 'Houston', 'Phoenix'],
    'Salary': [50000, 54000, 52000, 58000, 56000]
}

df = pd.DataFrame(data)
1. 设置自定义索引
  • 使用某一列设置为索引。
# 将'Name'列设置为索引
df_with_index = df.set_index('Name')
print(df_with_index)
2. 重置索引
  • 将自定义索引重置为默认的整数索引
# 重置索引
reset_df = df_with_index.reset_index()  
print(reset_df)
08-12 14:55