Answers for "python remove all spaces and new lines from string"

11

python delete white spaces

sentence = ' hello  apple'
sentence.strip()
>>> 'hello  apple'
Posted by: Guest on May-08-2020
6

how to remove spaces in string in python

sentence = '       hello  apple         '
sentence.strip()
>>> 'hello  apple'
Posted by: Guest on May-22-2020
2

remove extra spaces and empty lines from string python

"n".join([s for s in code.split("n") if s])
Posted by: Guest on March-13-2021
0

python string remove whitespace and newlines

' '.join(myString.split())
Posted by: Guest on July-11-2020

Code answers related to "python remove all spaces and new lines from string"

Python Answers by Framework

Browse Popular Code Answers by Language