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

Как удалить все пространства из струны в питоне

string = "Hello, world! Some more text here..." # Just a string
string.replace(" ", "") # Replaces all instances of " " (spaces)with "" (nothing)

# string is now "Hello,World!Somemoretexthere..."
# I hope I helped you! ;)
The Angriest Crusader

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

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 удалить пробел с начала строки

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


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

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

Как удалить пространства в струне в питоне

sentence = '       hello  apple         '
sentence.strip()
>>> 'hello  apple'
Light Lemur

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

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

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

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

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