“Python usuń białe przestrzenie” Kod odpowiedzi

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

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

String Python Usuń białe znak

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

Odpowiedzi podobne do “Python usuń białe przestrzenie”

Pytania podobne do “Python usuń białe przestrzenie”

Więcej pokrewnych odpowiedzi na “Python usuń białe przestrzenie” w Python

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

Przeglądaj inne języki kodu