“Hapus semua whitespace dari string python” Kode Jawaban

cara menghapus semua spasi dari string di python

string = "Hello, world! Some more text here..." # Just a string
string.replace(" ", "") # Replaces all instances of " " (spaces)with "" (nothing)

# string is now "Hello,World!Somemoretexthere..."
# I hope I helped you! ;)
The Angriest Crusader

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

Python Hapus Whitespace dari awal string

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


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

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

cara menghapus spasi dalam string di python

sentence = '       hello  apple         '
sentence.strip()
>>> 'hello  apple'
Light Lemur

Jawaban yang mirip dengan “Hapus semua whitespace dari string python”

Pertanyaan yang mirip dengan “Hapus semua whitespace dari string python”

Lebih banyak jawaban terkait untuk “Hapus semua whitespace dari string python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya