Answers for "python replace spaces arounds tring"

2

replacing spaces in a string python

mystring.replace(" ", "_")
Posted by: Guest on April-29-2020
0

python 3 replace all whitespace characters

>>> s = " t foo n bar "
>>> "".join(s.split())
'foobar'
Posted by: Guest on November-13-2020

Python Answers by Framework

Browse Popular Code Answers by Language