“Usuń dodatkowe przestrzenie Python” Kod odpowiedzi

Lista Python usuń przestrzenie

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

Przycinanie przestrzeni w Pythonie sznurkowym

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

Usuń dodatkowe przestrzenie Python

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

Usuń dodatkowe przestrzenie i puste linie z Python sznurka

"\n".join([s for s in code.split("\n") if s])
talhapythoneer

Python usuwa przestrzenie

string=' t e s t ' 
print(string.replace(' ',''))
Energetic Emu

Odpowiedzi podobne do “Usuń dodatkowe przestrzenie Python”

Pytania podobne do “Usuń dodatkowe przestrzenie Python”

Więcej pokrewnych odpowiedzi na “Usuń dodatkowe przestrzenie Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu