“Supprimer tous les espaces de String Python” Réponses codées

Comment supprimer tous les espaces d'une chaîne en 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

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

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

Comment supprimer les espaces en chaîne en python

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

Réponses similaires à “Supprimer tous les espaces de String Python”

Questions similaires à “Supprimer tous les espaces de String Python”

Plus de réponses similaires à “Supprimer tous les espaces de String Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code