Answers for "str replace all spaces to + pythin"

1

space to underscore python

mystring.replace(" ", "_")
Posted by: Guest on September-24-2020
6

how to remove spaces in string in python

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

Python Answers by Framework

Browse Popular Code Answers by Language