“Python Remova o espaço em branco do início da string” Respostas de código

Remova todo o espaço em branco do 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 exclua espaços brancos

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

Python Remova o espaço em branco do início da string

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


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

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

Python Trim Whitespace do final da corda

>>> "    xyz     ".rstrip()
'    xyz'
Embarrassed Earthworm

String python Remova o espaço em branco

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

Faixa de branco Python

>>> s.strip()
'Hello  World   From Pankaj \t\n\r\tHi There'
Unusual Unicorn

Respostas semelhantes a “Python Remova o espaço em branco do início da string”

Perguntas semelhantes a “Python Remova o espaço em branco do início da string”

Procure respostas de código populares por idioma

Procurar outros idiomas de código