,可以使用以下步骤:
pandas
库来处理Excel文件。如果你还没有安装该库,可以使用以下命令进行安装:pip install pandas
import pandas as pd
import os
excel_data = []
os
库的listdir
函数列出当前目录下的所有文件:files = os.listdir('.')
for file in files:
if file.startswith('R') and (file.endswith('.xlsx') or file.endswith('.xls')):
excel_data.append(file)
pandas
库的read_excel
函数读取Excel文件的数据,并将数据存储到一个字典中,字典的键为文件名,值为对应的数据:data = {}
for file in excel_data:
data[file] = pd.read_excel(file)
现在,你可以通过访问data
字典来获取每个Excel文件的数据。例如,如果你想获取名为R1.xlsx
的文件的数据,可以使用data['R1.xlsx']
。
这是一个基本的导入名称为R的多个Excel文件的方法。根据实际情况,你可能需要进行一些额外的处理,例如处理文件路径、处理不同的Excel表格结构等。
领取专属 10元无门槛券
手把手带您无忧上云