Answers for "strip python space"

5

remove trailing and leading spaces in python

text = "   Hello World        "
text.strip()
# Hello World
Posted by: Guest on November-08-2020
11

python delete white spaces

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

Python Answers by Framework

Browse Popular Code Answers by Language