温馨提示×

python怎么提取两列到一个表里

小亿
134
2023-12-08 09:13:23
栏目: 编程语言

要提取两列到一个表里,可以使用Python的pandas库来处理。以下是一个示例代码:

import pandas as pd

# 创建一个包含两列数据的字典
data = {'col1': [1, 2, 3, 4, 5],
        'col2': ['a', 'b', 'c', 'd', 'e']}

# 将字典转换为DataFrame
df = pd.DataFrame(data)

# 提取两列到一个新的DataFrame
new_df = df[['col1', 'col2']]

print(new_df)

运行以上代码,就可以将原始DataFrame中的’col1’和’col2’两列提取到一个新的DataFrame中。

0