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

Тяжелые пространства в струнном питоне

a = "      yo!      "
b = a.strip() # this will remove the white spaces that are leading and trailing
Super Stoat

Удалить все пробелы из 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

>>> import re
>>> re.sub(' +', ' ', 'The     quick brown    fox')
'The quick brown fox'
Worrisome Weasel

Python удалить пробел с начала строки

'     hello world!    '.strip()
'hello world!'


'     hello world!    '.lstrip()
'hello world!    '

'     hello world!    '.rstrip()
'    hello world!'
Breakable Buffalo

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

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

Ответы похожие на “Строка Python Удалить пробелы”

Вопросы похожие на “Строка Python Удалить пробелы”

Больше похожих ответов на “Строка Python Удалить пробелы” по Python

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

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