如何使用 Python 替换 Excel 中的单词?


在 Python 中,我们可以使用一个名为 **openpyxl** 的第三方 Python 库来替换 Excel 中的单词。Microsoft Excel 是一款用于数据管理和分析的有用工具。使用 Python,我们可以自动化一些 Excel 数据管理任务。在本文中,我们将了解如何使用 Python 替换 Excel 中的单词。

安装 openpyxl

在实现替换 Excel 中单词的程序之前,我们需要使用 Python 包管理器在我们的系统中安装 openpyxl 库。要安装 openpyxl,请在您的终端或命令提示符中键入以下命令。

Pip install openpyxl

语法

openpyxl.load_workbook(‘your_excel_file’)

这里,openpyxl.load_workbook() 函数从您的系统加载 Excel 文件。加载文件后,您可以在工作表上执行操作。

加载 Excel 电子表格

要加载 Excel 工作表,我们需要首先导入 openpyxl,然后使用 load_workbook() 函数加载电子表格,并使用 workbook.active 属性选择活动工作表。

示例

加载工作簿的代码如下所示:

import openpyxl

# Load the Excel spreadsheet
workbook = openpyxl.load_workbook('example.xlsx')

# Select the active worksheet
worksheet = workbook.active

Print("Workbook loaded")

输出

Workbook loaded

替换单词

要替换 Excel 中的特定单词,我们需要遍历活动 Excel 工作簿的每个单元格,并检查单元格中的单词是否与我们想要替换的单词匹配,然后在该单元格中插入新单词。

示例

替换旧单词为新单词的代码如下所示。

import openpyxl

# Load the Excel spreadsheet
workbook = openpyxl.load_workbook('testing.xlsx')

# Select the active worksheet
worksheet = workbook.active

# Replace the word 'old_word' with 'new_word'
for row in worksheet.iter_rows():
   for cell in row:
      if cell.value == 'old_word':
         print("Word found")
         cell.value = 'new_word'
         print("word replaced")
            
      else:
         
# Save the changes
workbook.save('testing.xlsx')

输出

Word found
word replaced

替换多个单词

如果我们想替换 Excel 电子表格中的多个单词,我们可以修改之前的代码以使用字典而不是单个单词。字典中的键表示要替换的单词,值表示用它们替换的单词。

示例

以下代码演示了如何在 Excel 电子表格中替换多个单词:

import openpyxl

# Load the Excel spreadsheet
workbook = openpyxl.load_workbook('example.xlsx')

# Select the active worksheet
worksheet = workbook.active

# Define the words to be replaced and their replacements
replacements = {
   'old_word_1': 'new_word_1',
   'old_word_2': 'new_word_2',
   'old_word_3': 'new_word_3'
}

# Replace the words
for row in worksheet.iter_rows():
   for cell in row:
      if cell.value in replacements:
         print("Word found")
         cell.value = replacements[cell.value]
         print("word replaced")
        
      else:
         print("word not found")

# Save the changes
workbook.save('example.xlsx')

输出

Word found
word replaced

结论

在本文中,我们讨论了如何使用 Python 的 openpyxl 库替换 Excel 中的单词。openpyxl 提供了打开电子表格工作簿并遍历工作簿单元格的功能。我们还可以替换电子表格中的多个单词,如本文中的一个示例所示。

更新于: 2023年7月10日

2K+ 次查看

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告

© . All rights reserved.