“supprimer l'espace vide de la chaîne 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

Supprimer les espaces vides d'une liste Python

for i in range(0,(len(list))):
        x = str(list[i]).strip(' ')
        list[i] = x
Vihaking

Supprimer après et avant l'espace Python

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

supprimer les espaces de String Python

words = "   test     words    "

# Remove end spaces
def remove_end_spaces(string):
    return "".join(string.rstrip())

# Remove first and  end spaces
def remove_first_end_spaces(string):
    return "".join(string.rstrip().lstrip())

# Remove all spaces
def remove_all_spaces(string):
    return "".join(string.split())

# Remove all extra spaces
def remove_all_extra_spaces(string):
    return " ".join(string.split())

# Show results
print(f'"{words}"')
print(f'"{remove_end_spaces(words)}"')
print(f'"{remove_first_end_spaces(words)}"')
print(f'"{remove_all_spaces(words)}"')
print(f'"{remove_all_extra_spaces(words)}"')
Everybody Poops

supprimer les espaces de la chaîne Python

s = '  Hello   World     From  Pankaj  \t\n\r\t  Hi       There        '

>>> s.replace(" ", "")
'HelloWorldFromPankaj\t\n\r\tHiThere'
Envious Emu

supprimer l'espace vide de la chaîne Python

string = "Welcome to Python"
new_str = "".join(string.split(" "))
print(new_str) # "WelcometoPython"
Cap'n Joseph Burntbeard

Réponses similaires à “supprimer l'espace vide de la chaîne Python”

Questions similaires à “supprimer l'espace vide de la chaîne Python”

Plus de réponses similaires à “supprimer l'espace vide de la chaîne Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code