pandas 提取excel某一列指定区域数据存储在一个数组中

你可以使用 pandas 库中的 read_excel() 函数来读取 Excel 文件,然后使用 [] 符号提取特定的列。例如:

import pandas as pd# 读取 Excel 文件
df = pd.read_excel('file.xlsx')

# 提取特定列,并存储在数组中
col = df['列名']
array = col.values

你也可以使用切片操作符来提取指定区域的数据。例如:

# 提取第2到第5行的数据
array = col[1:5].values

你可能感兴趣的:(pandas,excel,python,开发语言)