How to replace a word in excel using Python? Last Updated : 29 Aug, 2020 Comments Improve Suggest changes Like Article Like Report Excel is a very useful tool where we can have the data in the format of rows and columns. We can say that before the database comes into existence, excel played an important role in the storage of data. Nowadays using Excel input, many batch processing is getting done. There may be the requirement of replacing text in Excel sheet is always there as excel always holds important data. In this article, let us see how to replace a word in Excel using Python Methods and approaches used Here let us see via xlwt & xlrd packages and openpyxl packages for replacing a word in excel using Python Method 1 : xlwt & xlrd To install these packages type the below command in the terminal. # for writing into excel pip install xlwt # for reading pip install xlrd The Below code has two excel workbook. One for reading and getting the text. Other for writing the replaced text. We can do "n" number of replacements. The column should exactly have the specified searched text which needs to be replaced and once found they are replaced and written to a new workbook. Example: Excel file used - Python3 import xlwt import xlrd # Excel file can be in your local drive # and if not, specify the exact path sampleWorkbook = xlrd.open_workbook('sampleexcel.xlsx') originalSheet = sampleWorkbook.sheet_by_name('Test') newWorkbookForTextReplacement = xlwt.Workbook() newsheetForTextReplacement = newWorkbookForTextReplacement.add_sheet('Test') replacementTextKeyPairs = {'Apple': 'Kiwi', 'Oranges': 'Lemons', 'Grapes': 'Papayas'} # iterate over the rows of your sheet # ncols - number of columns in the # selected sheet, here it is for 'Test' sheet # nrows - number of rows in the selected # sheet, here it is for 'Test' sheet for i in range(originalSheet.nrows): print(i) # Get the data of each column data = [originalSheet.cell_value(i, col) for col in range(originalSheet.ncols)] for index, value in enumerate(data): # If any key present in replacementTextKeyPairs # matches with excel column value, replace the # column with the value if value in replacementTextKeyPairs.keys(): newsheetForTextReplacement.write( i, index, str(replacementTextKeyPairs.get(value))) else: newsheetForTextReplacement.write(i, index, value) # Replaced text will be present in the new workbook # with name sampleexcelwithreplacedtext.xls newWorkbookForTextReplacement.save('sampleexcelwithreplacedtext.xls') Output: Method 2 : openpyxl To install this module type the below command in the terminal. pip install openpyxl The advantage of openpyxl package is it can be used to both read and write xlsx/xlsm/xltx/xltm files. Below code uses openpyxl in reading and getting the text from one excel file, replacing the text and writing into another excel file. Example: Excel File Used - Python3 # Reading and writing in excel can be done by single module import openpyxl from openpyxl.utils.cell import get_column_letter workbook = openpyxl.load_workbook('sampleexcelopenpyxl.xlsx') workbook.sheetnames worksheet = workbook["Test"] # Number of rows number_of_rows = worksheet.max_row # Number of columns number_of_columns = worksheet.max_column replacementTextKeyPairs = {'1': 'One', '2': 'Two', '3': 'Three'} # Iterate over the columns and rows, search # for the text and replace for i in range(number_of_columns): for k in range(number_of_rows): cellValue = str(worksheet[get_column_letter(i+1)+str(k+1)].value) for key in replacementTextKeyPairs.keys(): if str(cellValue) == key: newCellValue = replacementTextKeyPairs.get(key) worksheet[get_column_letter(i+1)+str(k+1)] = str(newCellValue) workbook.save('sampleexcelwithreplacedtextusingopenpyxl.xlsx') Output: Note: openpyxl does not support the old .xls file format, use xlrd to read this file, or convert it to the more recent .xlsx file format Comment More infoAdvertise with us Next Article How to replace a word in excel using Python? priyarajtt Follow Improve Article Tags : Python Python-excel Practice Tags : python Similar Reads How to replace words in a string using a dictionary mapping In Python, we often need to replace words in a string based on a dictionary mapping, where keys are words to replace and values are their replacements. For example, given the string "the quick brown fox jumps over the lazy dog" and the dictionary {"quick": "slow", "lazy": "active"}, we want to repla 4 min read How to Replace Values in a List in Python? Replacing values in a list in Python can be done by accessing specific indexes and using loops. In this article, we are going to see how to replace the value in a List using Python. We can replace values in the list in several ways. The simplest way to replace values in a list in Python is by using 2 min read replace() in Python to replace a substring replace() method in Python allows us to replace a specific part of a string with a new value. It returns a new string with the change without modifying the original one. We can also specify how many times the replacement should occur.For Example:Pythons = "hlo AB world" # Replace "AB" with "C" in `s 1 min read How to Read an Excel File using polars The Polars is a fast, efficient DataFrame library in Python, designed for processing large datasets with low memory usage and high performance. While Polars is more commonly used with CSV, Parquet, and JSON files, we can also work with Excel files, though this requires an additional setup as Polars 4 min read Save user input to a Excel File in Python In this article, we will learn how to store user input in an excel sheet using Python, What is Excel? Excel is a spreadsheet in a computer application that is designed to add, display, analyze, organize, and manipulate data arranged in rows and columns. It is the most popular application for account 4 min read Python String replace() Method The replace() method replaces all occurrences of a specified substring in a string and returns a new string without modifying the original string.Letâs look at a simple example of replace() method.Pythons = "Hello World! Hello Python!" # Replace "Hello" with "Hi" s1 = s.replace("Hello", "Hi") print( 2 min read How to Automate an Excel Sheet in Python? Before you read this article and learn automation in Python, let's watch a video of Christian Genco (a talented programmer and an entrepreneur) explaining the importance of coding by taking the example of automation.You might have laughed loudly after watching this video, and you surely might have u 8 min read How to add colour to Excel cells using Python To add color to Excel cells we will be using the Openpyxl Python Library. The Openpyxl module allows us to read and modify Excel files using Python. Approach 1: Using the Openpyxl module, even small tasks can be done very efficiently and easily in excel. Input File:  Only declare the excel name wi 2 min read Working with Excel Spreadsheets in Python You all must have worked with Excel at some time in your life and must have felt the need to automate some repetitive or tedious task. Don't worry in this tutorial we are going to learn about how to work with Excel using Python, or automating Excel using Python. We will be covering this with the hel 15 min read Reverse each word in a sentence in Python In this article, we will explore various methods to reverse each word in a sentence. The simplest approach is by using a loop.Using LoopsWe can simply use a loop (for loop) to reverse each word in a sentence.Pythons = "Hello World" # Split 's' into words words = s.split() # Reverse each word using a 2 min read Like