“Python Usuń Whitespace od początku sznurka” Kod odpowiedzi

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

Python Usuń Whitespace od początku sznurka

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


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

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

Python Trim Whitespace od końca sznurka

>>> "    xyz     ".rstrip()
'    xyz'
Embarrassed Earthworm

String Python Usuń białe znak

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

Strip Whitespace Python

>>> s.strip()
'Hello  World   From Pankaj \t\n\r\tHi There'
Unusual Unicorn

Odpowiedzi podobne do “Python Usuń Whitespace od początku sznurka”

Pytania podobne do “Python Usuń Whitespace od początku sznurka”

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

Przeglądaj inne języki kodu