Welcome folks today in this blog post we will be removing trailing and leading spaces from string using strip() method
in python. All the full source code of the application is shown below.
Get Started
In order to get started you need to make an app.py
file and copy paste the following code
app.py
1 2 3 |
s = " sdfsdfdsf sdfsdfsf " print(s.strip()) |
Here we are using the strip
method which is a built in method
in python. Now if you execute the python
script by typing the below command as shown below
python app.py