“String Python Usuń białe znak” Kod odpowiedzi

Przycinanie przestrzeni w Pythonie sznurkowym

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

Usuń całą błotniczkę z Pythona strunowego

import re
s = '\n \t this is a string   with a lot of whitespace\t'
s = re.sub('\s+', '', s)
Helpful Hippopotamus

Python usuń białe przestrzenie

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

Usuń dodatkowe przestrzenie Python

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

Python Usuń Whitespace od początku sznurka

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


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

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

String Python Usuń białe znak

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

Odpowiedzi podobne do “String Python Usuń białe znak”

Pytania podobne do “String Python Usuń białe znak”

Więcej pokrewnych odpowiedzi na “String Python Usuń białe znak” w Python

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

Przeglądaj inne języki kodu