失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > Openpyxl:读取/写入Excel文件的Python模块

Openpyxl:读取/写入Excel文件的Python模块

时间:2020-04-16 17:40:03

相关推荐

Openpyxl:读取/写入Excel文件的Python模块

Python openpyxl module is a native library to work with excel files. We can read excel files as well as write excel files.

Python openpyxl模块是使用excel文件的本机库。 我们可以读取excel文件,也可以写入excel文件。

1)安装Openpyxl模块 (1) Installing Openpyxl Module)

We can install openpyxl module using the PIP command.

我们可以使用PIP命令安装openpyxl模块。

$ pip install openpyxl

Pip Install Openpyxl

点安装Openpyxl

2)使用openpyxl读取Excel文件 (2) Reading Excel File using openpyxl)

I have created a sample excel file (records.xlsx) with three sheets. The data is present in the first two sheets.

我用三张纸创建了一个示例excel文件(records.xlsx)。 数据显示在前两页中。

Openpyxl Example Excel Sheet

Openpyxl Excel表格示例

We will use this excel file to look at some examples to read data from the excel sheet.

我们将使用此excel文件查看一些示例以从excel表中读取数据。

1.从Excel文件获取工作表名称 (1. Getting Sheet Names from the Excel File)

import openpyxlexcel_file = openpyxl.load_workbook('records.xlsx')# sheet namesprint(excel_file.sheetnames)

Output:

输出:

['Employees', 'Cars', 'Numbers']

Thesheetnamesvariable returns the list of the names of worksheets in the workbook. The names are returned in the order of the worksheets in the excel file.

sheetnames变量返回工作簿中工作表名称的列表。 名称按照excel文件中工作表的顺序返回。

2.从Excel文件获取特定工作表 (2. Getting Specific Sheet from the Excel File)

We can access a specific worksheet using the index variable with the workbook object.

我们可以使用带有工作簿对象的index变量来访问特定的工作表。

employees_sheet = excel_file['Employees']print(type(excel_file))print(type(employees_sheet))currently_active_sheet = excel_file.active

Output:

输出:

<class 'openpyxl.workbook.workbook.Workbook'><class 'openpyxl.worksheet.worksheet.Worksheet'>

If you want to access the currently active sheet, use theactiveproperty of the workbook.

如果要访问当前活动的工作表,请使用工作簿的active属性。

3.从Excel工作表中读取单元格值 (3. Reading a Cell Value from the Excel Sheet)

There are two ways to get a cell value from the excel sheet. We can get the Cell object using the cell() function or we can get it using the index of the cell.

有两种方法可以从Excel工作表中获取单元格值。 我们可以使用cell()函数获取Cell对象,也可以使用单元格的索引获取它。

cell_obj = employees_sheet.cell(row=1, column=1)print(type(cell_obj))print(f'Employees[A1]={cell_obj.value}')# second wayprint(f'Employees[A1]={employees_sheet["A1"].value}')

Output:

输出:

<class 'openpyxl.cell.cell.Cell'>Employees[A1]=EmpIDEmployees[A1]=EmpID

4. Excel工作表中的行和列总数 (4. Total Number of Rows and Columns in the Excel Sheet)

We can get the total number of rows and columns using themax_rowandmax_columnproperties of the worksheet.

我们可以使用工作表的max_rowmax_column属性获取行和列的max_row

print(f'Total Rows = {employees_sheet.max_row} and Total Columns = {employees_sheet.max_column}')

Output:

输出:

Total Rows = 4 and Total Columns = 3

5.打印Excel工作表的标题行 (5. Printing Header Row of the Excel Sheet)

header_cells_generator = employees_sheet.iter_rows(max_row=1)for header_cells_tuple in header_cells_generator:for i in range(len(header_cells_tuple)):print(header_cells_tuple[i].value)

Output:

输出:

EmpIDEmpNameEmpRole

The iter_rows() function generates cells from the worksheet, by row. We can use it to get the cells from a specific row.

iter_rows()函数从工作表中按行生成单元格。 我们可以使用它来获取特定行中的单元格。

6.打印列中的所有值 (6. Printing all the values from a column)

for x in range(1, employees_sheet.max_row+1):print(employees_sheet.cell(row=x, column=1).value)

Output:

输出:

EmpID123

7.从一行中打印所有值 (7. Printing all the values from a row)

for x in range(1, employees_sheet.max_column+1):print(employees_sheet.cell(row=2, column=x).value)

Output:

输出:

1PankajCEO

8.从Excel工作表中读取单元格的范围 (8. Reading Range of Cells from the Excel Sheet)

We can pass the range of cells to read multiple cells at a time.

我们可以传递单元格的范围以一次读取多个单元格。

cells = employees_sheet['A2':'C3']for id, name, role in cells:print(f'Employee[{id.value}, {name.value}, {role.value}]')

Output:

输出:

Employee[1, Pankaj, CEO]Employee[2, David Lee, Editor]

9.按行迭代单元格 (9. Iterating Cells by Rows)

for row in employees_sheet.iter_rows(min_row=2, min_col=1, max_row=4, max_col=3):for cell in row:print(cell.value, end="|")print("")

Output:

输出:

1|Pankaj|CEO|2|David Lee|Editor|3|Lisa Ray|Author|

The arguments passed to the iter_rows() function creates the two-dimensional table from which the values are read, by row. In this example, the values are read between A2 and C4.

传递给iter_rows()函数的参数创建一个二维表,从该表中按行读取值。 在此示例中,在A2和C4之间读取值。

10.按列迭代单元格 (10. Iterating Cells by Columns)

for col in employees_sheet.iter_cols(min_row=2, min_col=1, max_row=4, max_col=3):for cell in col:print(cell.value, end="|")print("")

Output:

输出:

1|2|3|Pankaj|David Lee|Lisa Ray|CEO|Editor|Author|

The iter_cols() function is same as iter_rows() except that the values are read column-wise.

iter_cols()函数与iter_rows()相同,只不过是按列读取值。

3)使用openpyxl编写Excel文件 (3) Writing Excel File using openpyxl)

In this section, we will look into some examples of writing excel files and cell data.

在本节中,我们将研究一些编写excel文件和单元格数据的示例。

1.使用openpyxl编写Excel文件 (1. Writing Excel File using openpyxl)

from openpyxl import Workbookimport datetimeexcel_file = Workbook()excel_sheet = excel_file.create_sheet(title='Holidays ', index=0)# creating header rowexcel_sheet['A1'] = 'Holiday Name'excel_sheet['B1'] = 'Holiday Description'excel_sheet['C1'] = 'Holiday Date'# adding dataexcel_sheet['A2'] = 'Diwali'excel_sheet['B2'] = 'Biggest Indian Festival'excel_sheet['C2'] = datetime.date(year=, month=10, day=27).strftime("%m/%d/%y")excel_sheet['A3'] = 'Christmas'excel_sheet['B3'] = 'Birth of Jesus Christ'excel_sheet['C3'] = datetime.date(year=, month=12, day=25).strftime("%m/%d/%y")# save the fileexcel_file.save(filename="Holidays.xlsx")

Output:

输出:

Openpyxl Write Excel File

Openpyxl写入Excel文件

2.更新单元格值 (2. Updating a Cell value)

We can either use the index of the cell or use the cell object to set the value. Let’s change some values in the excel file created in the last example.

我们可以使用单元格的索引,也可以使用单元格对象来设置值。 让我们更改在上一个示例中创建的excel文件中的一些值。

import openpyxlexcel_file = openpyxl.load_workbook('Holidays.xlsx')excel_sheet = excel_file['Holidays ']# using indexexcel_sheet['A2'] = 'Deepawali'# using cell objectexcel_sheet.cell(row=2, column=2).value = 'Biggest Indian Festival for Hindus'excel_file.save('Holidays.xlsx')

Output:

输出:

Openpyxl Update Cell Value

Openpyxl更新单元格值

3.将多个值附加到Excel工作表 (3. Appending Multiple Values to the Excel Sheet)

We can use the append() function to add a sequence of values to the bottom of the worksheet.

我们可以使用append()函数在工作表的底部添加一系列值。

holiday_rows = (('Black Friday', 'Fourth Thursday of November, Shopping Day', '11/29/19'),('Holi', 'Festival of Colors', '3/20/19'))for row in holiday_rows:excel_sheet.append(row)excel_file.save('Holidays.xlsx')

Output:

输出:

Openpyxl Append Multiple Rows To Excel File

Openpyxl将多行追加到Excel文件

4)从Excel工作表中删除行和列 (4) Deleting Rows and Columns from the Excel Sheet)

We can use the delete_cols() and delete_rows() functions to delete columns and rows from the excel sheet.

我们可以使用delete_cols()和delete_rows()函数从excel工作表中删除列和行。

import openpyxlexcel_file = openpyxl.load_workbook('Holidays.xlsx')excel_sheet = excel_file['Holidays ']# delete columnexcel_sheet.delete_cols(idx=2) # B=2# delete rowexcel_sheet.delete_rows(idx=2, amount=2) # rows 2,3 are deletedexcel_file.save('Holidays.xlsx')

Theidxparameter provides the index of the rows and columns to delete. If we want to delete multiple adjacent rows and columns, we can provide the amount argument.

idx参数提供要删除的行和列的索引。 如果要删除多个相邻的行和列,可以提供amount参数。

5)结论 (5) Conclusion)

Python openpyxl module is a perfect choice to work with excel sheets. We can also add images to the excel sheet by using the pillow library with it. But, it doesn’t guard us against quadratic blowup or billion laughs XML attacks. So, if you are getting values from the user and saving it, then try to validate and sanitize it.

Python openpyxl模块是使用excel工作表的理想选择。 我们还可以通过使用枕头库将图像添加到excel工作表中。 但是,它不能防止我们遭受二次爆炸或数十亿次XML攻击。 因此,如果您要从用户那里获取并保存值,请尝试对其进行验证和消毒。

6)进一步阅读 (6) Further Readings)

Pandas read_excel() – Reading Excel File in Python熊猫read_excel()–用Python读取Excel文件 Python ModulesPython模块 Python TutorialPython教程

7)参考 (7) References)

文件 BitBucket Source CodeBitBucket源代码

翻译自: /33325/openpyxl-python-read-write-excel-files

如果觉得《Openpyxl:读取/写入Excel文件的Python模块》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。