Answers for "remove white spaces in list python"

11

python delete white spaces

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

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
0

python string remove whitespace

' sss d ssd s'.replace(" ", "")
# output: 'sssdssds'
Posted by: Guest on February-25-2021

Code answers related to "remove white spaces in list python"

Python Answers by Framework

Browse Popular Code Answers by Language