Answers for "remove extra spaces from string pyton"

5

remove spaces from string python

s = '  Hello   World     From  Pankaj  tnrt  Hi       There        '

>>> s.replace(" ", "")
'HelloWorldFromPankajtnrtHiThere'
Posted by: Guest on August-27-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

Code answers related to "remove extra spaces from string pyton"

Python Answers by Framework

Browse Popular Code Answers by Language