“chaîne python supprimez l'espace” Réponses codées

Les espaces de coupe dans String Python

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

Supprimer tous les espaces de 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 Supprimer les espaces blancs

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

supprimer des espaces supplémentaires Python

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

Python supprime les espaces du début de la chaîne

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


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

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

chaîne python supprimez l'espace

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

Réponses similaires à “chaîne python supprimez l'espace”

Questions similaires à “chaîne python supprimez l'espace”

Plus de réponses similaires à “chaîne python supprimez l'espace” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code