“Usuń całą błotniczkę z Pythona strunowego” Kod odpowiedzi

Jak usunąć wszystkie przestrzenie ze sznurka w Pythonie

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

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

Python Usuń Whitespace od początku sznurka

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


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

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

Jak usunąć przestrzenie w sznurku w Pythonie

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

Odpowiedzi podobne do “Usuń całą błotniczkę z Pythona strunowego”

Pytania podobne do “Usuń całą błotniczkę z Pythona strunowego”

Więcej pokrewnych odpowiedzi na “Usuń całą błotniczkę z Pythona strunowego” w Python

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

Przeglądaj inne języki kodu