Answers for "python remove blanks from string"

0

python remove blanks from string

sentence = ' hello  apple  '
sentence.strip()
>>> 'hello  apple'
Posted by: Guest on June-19-2021

Code answers related to "python remove blanks from string"

Python Answers by Framework

Browse Popular Code Answers by Language