“Python Trim Whitespace dari ujung string” 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

Python Hapus Whitespace dari awal string

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


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

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

Python Trim Whitespace dari ujung string

>>> "    xyz     ".rstrip()
'    xyz'
Embarrassed Earthworm

string python hapus whitespace

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

Python Strip Whitespace


s1 = '  abc  '

print(f'String =\'{s1}\'')

print(f'After Removing Leading Whitespaces String =\'{s1.lstrip()}\'')

print(f'After Removing Trailing Whitespaces String =\'{s1.rstrip()}\'')

print(f'After Trimming Whitespaces String =\'{s1.strip()}\'')
Awful Ape

Jawaban yang mirip dengan “Python Trim Whitespace dari ujung string”

Pertanyaan yang mirip dengan “Python Trim Whitespace dari ujung string”

Lebih banyak jawaban terkait untuk “Python Trim Whitespace dari ujung string” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya