使用python读取Excel文件
在VBA里使用SAP GUI Scripts 执行批量操作很方便,如果不熟悉VBA,写起VBA代码感觉挺不方便的。
下面是Python代码用来读取Excel文件里的内容,代码挺简单的。
import openpyxl # 指定Excel文件路径 excel_file = 'D:\data\11.xlsx' # 打开Excel文件 workbook = openpyxl.load_workbook(excel_file) # 选择Sheet2 sheet = workbook['Sheet2'] # 获取A列、B列和C列的所有值 column_a_values = [cell.value for cell in sheet['A']] column_b_values = [cell.value for cell in sheet['B']] column_c_values = [cell.value for cell in sheet['C']] # 如果想跳过第一行。一般第一行是标题。下面这个代码可以实现 # column_values = [cell.value for cell in sheet['A'][1:]] # 打印A列、B列和C列的值 for a_value, b_value, c_value in zip(column_a_values, column_b_values, column_c_values): print(f"A: {a_value} B: {b_value} C: {c_value}") # 关闭Excel文件 workbook.close()