Remove all whitespace in a string in Python

+1 vote

I want to eliminate all the whitespace from a string, on both ends, and in between words.

I have this Python code:

def my_handle(self): sentence = ' hello apple ' sentence.strip()

But that only eliminates the whitespace on both sides of the string. How do I remove all whitespace?

Aug 28, 2018 in Python by bug_seeker
• 15,520 points
16,866 views

2 answers to this question.

0 votes

If you want to remove leading and ending spaces, use str.strip():

sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'

If you want to remove all spaces, use str.replace():

sentence = ' hello apple'
sentence.replace(" ", "")
>>> 'helloapple'

If you want to remove duplicated spaces, use str.split():

sentence = ' hello apple'
" ".join(sentence.split())
>>> 'hello apple'

Hope this helps!!

If you need to learn more about Python, It's recommended to join Python Certification Training today.

Thanks!

answered Aug 28, 2018 by Priyaj
• 58,090 points
0 votes

You can also use regular expressions for this.

import re
pattern = re.compile(r'\s+')
sentence = re.sub(pattern, '', sentence)
answered Aug 31, 2018 by Omkar
• 69,210 points

Related Questions In Python

0 votes
1 answer

How to remove all characters before a specific character in Python?

Use re.sub. Just match all the chars ...READ MORE

answered Feb 27, 2019 in Python by SDeb
• 13,300 points
9,742 views
0 votes
1 answer

What is the best way to remove accents in a Python unicode string?

Hello @kartik, Some languages have combining diacritics as ...READ MORE

answered May 11, 2020 in Python by Niroj
• 82,880 points
6,846 views
0 votes
1 answer

How to Remove specific characters from a string in Python?

Strings in Python are immutable (can't be changed). Because ...READ MORE

answered Jan 5, 2021 in Python by Gitika
• 65,910 points
680 views
0 votes
1 answer

Looping over a string in python

for c in "string": ...READ MORE

answered May 28, 2018 in Python by Nietzsche's daemon
• 4,260 points
454 views
0 votes
2 answers
+1 vote
2 answers

how can i count the items in a list?

Syntax :            list. count(value) Code: colors = ['red', 'green', ...READ MORE

answered Jul 7, 2019 in Python by Neha
• 330 points

edited Jul 8, 2019 by Kalgi 4,067 views
0 votes
1 answer
+5 votes
6 answers

Lowercase in Python

You can simply the built-in function in ...READ MORE

answered Apr 11, 2018 in Python by hemant
• 5,790 points
3,488 views
0 votes
1 answer

Reverse a string in Python

How about: >>> 'hello world'[::-1] 'dlrow olleh' This is ...READ MORE

answered Aug 1, 2018 in Python by Priyaj
• 58,090 points
573 views
–1 vote
2 answers

How to find the size of a string in Python?

following way to find length of string  x ...READ MORE

answered Mar 29, 2019 in Python by rajesh
• 1,270 points
1,619 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP