Python List Find and Replace Element Example
Hey Folks,
In this tutorial, you will learn python list find and replace. This article will give you a simple example of python list find and replace element. we will help you to give an example of python find and replace in list of strings. I explained simply step by step how to find and replace string in python list.
If you want to find and replace elements in a python list, then there are many ways to do this. I will give you a very simple example to replace the value in a python list. In this example, we will take list with [br] contain, then we will replace with <br />. we will use replace() to replace string in python list. so, let's see the example with output:
You can use these examples with python3 (Python 3) version.
let's see below a simple example with output:
Example 1:
main.py
myList = ['Hi[br]', 'I', 'am', 'Hardik[br]', 'form', 'India[br]'] # Python List Find and Replace Element Example newList = [elem.replace('[br]', '<br />') for elem in myList] print(newList);
Output:
['Hi<br />', 'I', 'am', 'Hardik<br />', 'form', 'India<br />']
I hope it can help you...