“Faixa de branco Python” Respostas de código

String python Remova o espaço em branco e as novas linhas

' '.join(myString.split())
Index out of bounds

Remova depois e antes do espaço python

st = " a "
strip(st)
#Output : "a"
Inquisitive Ibis

Aparelhamento espaços em python de cordas

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

Python converte Remover espaços do início da corda

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

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

Faixa de branco Python

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

Respostas semelhantes a “Faixa de branco Python”

Perguntas semelhantes a “Faixa de branco Python”

Mais respostas relacionadas para “Faixa de branco Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código