溫馨提示×

python怎么去掉字符串內(nèi)部的空格

小億
86
2024-03-04 15:42:09
欄目: 編程語言

要去掉Python字符串(str)內(nèi)部的空格,您可以使用`replace()`方法或者正則表達(dá)式來刪除空格。以下是兩種方法的示例:

1、使用 `replace()` 方法:

```python

original_string = "Hello World"

new_string = original_string.replace(" ", "")

print(new_string)

```

這將輸出:`HelloWorld`,其中所有空格都被刪除。

2、使用正則表達(dá)式:

```python

import re

original_string = "Hello World"

new_string = re.sub(r'\s+', '', original_string)

print(new_string)

```

這段代碼使用正則表達(dá)式`\s+`來匹配一個(gè)或多個(gè)空格,并用空字符串替換它們。最終輸出為:`HelloWorld`,即不包含任何空格的字符串。

0