Searching and replacing with regular expressions is equally easy and very simple in nature. To do that we will tweak our old code a little bit. We use “re” module and it does the simple jobs. Regular expression is itself a big topic. We try to understand the basic things so that we can use it in our future projects.
Using “re” Module
If you want to use “re” module, the first step is importation. We need to import the module first and write it on the top of the code. Consider this code where we have a text file called “file.txt” and it is stored in our “primary” folder.
<code>
#!/usr/bin/python3 ...