“Jak usunąć białespace ze sznurka w Pythonie” 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

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ń dodatkowe przestrzenie Python

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

Jak usunąć białespace ze sznurka w Pythonie

def remove_witespace(data_of_string):
    string = ""
    for char in data_of_string:
        if " " not in char:
            string = string + char
            
    return string
print(remove_witespace("python is amazing programming language"))        
Programmer of empires

Odpowiedzi podobne do “Jak usunąć białespace ze sznurka w Pythonie”

Pytania podobne do “Jak usunąć białespace ze sznurka w Pythonie”

Więcej pokrewnych odpowiedzi na “Jak usunąć białespace ze sznurka w Pythonie” w Python

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

Przeglądaj inne języki kodu