“cara menghapus spasi putih dari string di python” Kode Jawaban

python convert lepaskan spasi dari awal string

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

Hapus semua whitespace dari string python

import re
s = '\n \t this is a string   with a lot of whitespace\t'
s = re.sub('\s+', '', s)
Helpful Hippopotamus

python hapus spasi putih

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

Hapus spasi dari string python

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

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

Hapus spasi ekstra Python

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

cara menghapus spasi putih dari string di python

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

Jawaban yang mirip dengan “cara menghapus spasi putih dari string di python”

Pertanyaan yang mirip dengan “cara menghapus spasi putih dari string di python”

Lebih banyak jawaban terkait untuk “cara menghapus spasi putih dari string di python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya