Answers for "python script to remove all the spaces"

4

remove all whitespace from string python

import re
s = 'n t this is a string   with a lot of whitespacet'
s = re.sub('s+', '', s)
Posted by: Guest on August-03-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 script to remove all the spaces"

Python Answers by Framework

Browse Popular Code Answers by Language