“Jak usunąć przestrzenie w sznurku w Pythonie” 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

Python Przekształć Usuń przestrzenie od początku sznurka

## Remove the Starting Spaces in Python
 
string1="    This is Test String to strip leading space"
print (string1.lstrip())
Embarrassed Earthworm

Python usuń białe przestrzenie

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

Usuń spacje z Python String

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

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

Usuń przestrzenie w Pythonie strunowym

>>> s.replace(" ", "")

Ferry_Morris

Jak usunąć przestrzenie w sznurku w Pythonie

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

Odpowiedzi podobne do “Jak usunąć przestrzenie w sznurku w Pythonie”

Pytania podobne do “Jak usunąć przestrzenie w sznurku w Pythonie”

Więcej pokrewnych odpowiedzi na “Jak usunąć przestrzenie w sznurku w Pythonie” w Python

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

Przeglądaj inne języki kodu