Answers for "remove spaces in array python"

5

remove spaces from string python

s = '  Hello   World     From  Pankaj  tnrt  Hi       There        '

>>> s.replace(" ", "")
'HelloWorldFromPankajtnrtHiThere'
Posted by: Guest on August-27-2020
1

delete an element by value from a list if it made of white spaces python

[name for name in starring if name.strip()]
Posted by: Guest on February-13-2020

Code answers related to "remove spaces in array python"

Python Answers by Framework

Browse Popular Code Answers by Language