如何在 Python 中打开 Excel 文件?
- 2025-03-19 08:56:00
- admin 原创
- 40
问题描述:
如何在 Python 中打开并读取 Excel 文件?
例如,我sometextfile.txt
使用读取命令打开了文本文件。如何对 Excel 文件执行此操作?
解决方案 1:
您可以使用pandas
包。
import pandas as pd
您可以将工作表名称作为参数传递给pandas.read_excel()
:
file_name = # path to file + file name
sheet = # sheet name or sheet number or list of sheet numbers and names
df = pd.read_excel(file_name, sheet_name=sheet)
print(df.head()) # print first 5 rows of the dataframe
如果您正在使用具有单个工作表的 Excel 文件,则只需使用:
df = pd.read_excel(file_name)
print(df.head())
或者,当您处理包含多张工作表的 Excel 文件时,您可以使用pandas.ExcelFile
:
xl = pd.ExcelFile(file_name)
xl.sheet_names
# > [u'Sheet1', u'Sheet2', u'Sheet3']
df = xl.parse("Sheet1")
df.head()
解决方案 2:
尝试xlrd 库。
[编辑] - 从您的评论中我可以看出,类似下面的代码片段可能会起到作用。我在这里假设您只是在一列中搜索单词“john”,但您可以添加更多或将其变成更通用的函数。
from xlrd import open_workbook
book = open_workbook('simple.xls',on_demand=True)
for name in book.sheet_names():
if name.endswith('2'):
sheet = book.sheet_by_name(name)
# Attempt to find a matching row (search the first column for 'john')
rowIndex = -1
for cell in sheet.col(0): #
if 'john' in cell.value:
break
# If we found the row, print it
if row != -1:
cells = sheet.row(row)
for cell in cells:
print cell.value
book.unload_sheet(name)
解决方案 3:
这不像打开纯文本文件那么简单,需要某种外部模块,因为没有内置任何模块可以执行此操作。以下是一些选项:
如果可能的话,您可能需要考虑将 Excel 电子表格导出为 CSV 文件,然后使用内置的 python csv 模块读取它:
http://docs.python.org/library/csv.html
解决方案 4:
有openpxyl包:
>>> from openpyxl import load_workbook
>>> wb2 = load_workbook('test.xlsx')
>>> print wb2.get_sheet_names()
['Sheet2', 'New Title', 'Sheet1']
>>> worksheet1 = wb2['Sheet1'] # one way to load a worksheet
>>> worksheet2 = wb2.get_sheet_by_name('Sheet2') # another way to load a worksheet
>>> print(worksheet1['D18'].value)
3
>>> for row in worksheet1.iter_rows():
>>> print row[0].value()
解决方案 5:
您可以使用只需要 xlrd 的 xlpython 包。可在此处找到它https://pypi.python.org/pypi/xlpython
,其文档可在此处找到 https://github.com/morfat/xlpython
解决方案 6:
这可能会有帮助:
这将创建一个节点,该节点采用二维列表(列表项列表)并将其推送到 Excel 电子表格中。确保 IN[] 存在,否则将引发异常。
这是针对 excel 2013 的 Revit excel dynamo 节点的重写,因为默认的预打包节点一直在中断。我也有一个类似的读取节点。Python 中的 excel 语法很棘手。
谢谢@CodingNinja - 已更新:)
###Export Excel - intended to replace malfunctioning excel node
import clr
clr.AddReferenceByName('Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c')
##AddReferenceGUID("{00020813-0000-0000-C000-000000000046}") ''Excel C:Program FilesMicrosoft OfficeOffice15EXCEL.EXE
##Need to Verify interop for version 2015 is 15 and node attachemnt for it.
from Microsoft.Office.Interop import * ##Excel
################################Initialize FP and Sheet ID
##Same functionality as the excel node
strFileName = IN[0] ##Filename
sheetName = IN[1] ##Sheet
RowOffset= IN[2] ##RowOffset
ColOffset= IN[3] ##COL OFfset
Data=IN[4] ##Data
Overwrite=IN[5] ##Check for auto-overwtite
XLVisible = False #IN[6] ##XL Visible for operation or not?
RowOffset=0
if IN[2]>0:
RowOffset=IN[2] ##RowOffset
ColOffset=0
if IN[3]>0:
ColOffset=IN[3] ##COL OFfset
if IN[6]<>False:
XLVisible = True #IN[6] ##XL Visible for operation or not?
################################Initialize FP and Sheet ID
xlCellTypeLastCell = 11 #####define special sells value constant
################################
xls = Excel.ApplicationClass() ####Connect with application
xls.Visible = XLVisible ##VISIBLE YES/NO
xls.DisplayAlerts = False ### ALerts
import os.path
if os.path.isfile(strFileName):
wb = xls.Workbooks.Open(strFileName, False) ####Open the file
else:
wb = xls.Workbooks.add# ####Open the file
wb.SaveAs(strFileName)
wb.application.visible = XLVisible ####Show Excel
try:
ws = wb.Worksheets(sheetName) ####Get the sheet in the WB base
except:
ws = wb.sheets.add() ####If it doesn't exist- add it. use () for object method
ws.Name = sheetName
#################################
#lastRow for iterating rows
lastRow=ws.UsedRange.SpecialCells(xlCellTypeLastCell).Row
#lastCol for iterating columns
lastCol=ws.UsedRange.SpecialCells(xlCellTypeLastCell).Column
#######################################################################
out=[] ###MESSAGE GATHERING
c=0
r=0
val=""
if Overwrite == False : ####Look ahead for non-empty cells to throw error
for r, row in enumerate(Data): ####BASE 0## EACH ROW OF DATA ENUMERATED in the 2D array #range( RowOffset, lastRow + RowOffset):
for c, col in enumerate (row): ####BASE 0## Each colmn in each row is a cell with data ### in range(ColOffset, lastCol + ColOffset):
if col.Value2 >"" :
OUT= "ERROR- Cannot overwrite"
raise ValueError("ERROR- Cannot overwrite")
##out.append(Data[0]) ##append mesage for error
############################################################################
for r, row in enumerate(Data): ####BASE 0## EACH ROW OF DATA ENUMERATED in the 2D array #range( RowOffset, lastRow + RowOffset):
for c, col in enumerate (row): ####BASE 0## Each colmn in each row is a cell with data ### in range(ColOffset, lastCol + ColOffset):
ws.Cells[r+1+RowOffset,c+1+ColOffset].Value2 = col.__str__()
##run macro disbled for debugging excel macro
##xls.Application.Run("Align_data_and_Highlight_Issues")
解决方案 7:
import pandas as pd
import os
files = os.listdir('path/to/files/directory/')
desiredFile = files[i]
filePath = 'path/to/files/directory/%s'
Ofile = filePath % desiredFile
xls_import = pd.read_csv(Ofile)
现在您可以使用 pandas DataFrames 的强大功能了!
解决方案 8:
此代码适用于 Python 3.5.2。它打开并保存 excel。我目前正在研究如何将数据保存到文件中,但这是代码:
import csv
excel = csv.writer(open("file1.csv", "wb"))
扫码咨询,免费领取项目管理大礼包!