“Python Delete White Spaces” Ответ

Python преобразовать снятие пробелов с начала строки

## Remove the Starting Spaces in Python
 
string1="    This is Test String to strip leading space"
print (string1.lstrip())
Embarrassed Earthworm

Удалить все пробелы из String Python

import re
s = '\n \t this is a string   with a lot of whitespace\t'
s = re.sub('\s+', '', s)
Helpful Hippopotamus

Python Delete White Spaces

sentence = ' hello  apple'
sentence.strip()
>>> 'hello  apple'
Proud Polecat

Строка Python Удалить пробелы

' sss d ssd s'.replace(" ", "")
# output: 'sssdssds' 
David Diamant

Ответы похожие на “Python Delete White Spaces”

Вопросы похожие на “Python Delete White Spaces”

Больше похожих ответов на “Python Delete White Spaces” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования