“string python hapus whitespace” Kode Jawaban

Pemangkasan Ruang Dalam Python String

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

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 ekstra Python

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

Python Hapus Whitespace dari awal string

'     hello world!    '.strip()
'hello world!'


'     hello world!    '.lstrip()
'hello world!    '

'     hello world!    '.rstrip()
'    hello world!'
Breakable Buffalo

string python hapus whitespace

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

Jawaban yang mirip dengan “string python hapus whitespace”

Pertanyaan yang mirip dengan “string python hapus whitespace”

Lebih banyak jawaban terkait untuk “string python hapus whitespace” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya