Answers for "Python get rid of white spaces"

11

python delete white spaces

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

python how to get rid of spaces in print

print('n{} you will be {} in ten years.'.format(name, ageinten))
Posted by: Guest on October-30-2020

Code answers related to "Python get rid of white spaces"

Python Answers by Framework

Browse Popular Code Answers by Language