“Hapus spasi ekstra Python” Kode Jawaban

Daftar Python menghapus spasi

for i in range(0,(len(list))):
        x = str(list[i]).strip(' ')
        list[i] = x
Vihaking

Pemangkasan Ruang Dalam Python String

a = "      yo!      "
b = a.strip() # this will remove the white spaces that are leading and trailing
Super Stoat

Hapus spasi ekstra Python

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

Hapus spasi ekstra dan garis kosong dari string python

"\n".join([s for s in code.split("\n") if s])
talhapythoneer

Python menghapus spasi

string=' t e s t ' 
print(string.replace(' ',''))
Energetic Emu

Jawaban yang mirip dengan “Hapus spasi ekstra Python”

Pertanyaan yang mirip dengan “Hapus spasi ekstra Python”

Lebih banyak jawaban terkait untuk “Hapus spasi ekstra Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya