python去除空格的方法
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
python去除空格的方法
【原创版3篇】
《python去除空格的方法》篇1
在Python 中,可以使用字符串方法`strip()` 来去除字符串中的空格。
`strip()` 方法会从字符串的两端去除所有的空格,包括开头和结尾的空格。
下面是一个示例代码,演示如何使用`strip()` 方法去除字符串中的空格:
```python
str1 = "Hello World"
str2 = " Hello World "
# 去除左边的空格
str1_stripped = str1.strip()
print("去除左边的空格:", str1_stripped)
# 去除右边的空格
str2_stripped = str2.strip()
print("去除右边的空格:", str2_stripped)
# 去除两边的空格
str1_double_stripped = str1.strip().strip()
print("去除两边的空格:", str1_double_stripped)
str2_double_stripped = str2.strip().strip()
print("去除两边的空格:", str2_double_stripped)
```
输出结果如下:
```
去除左边的空格:Hello World
去除右边的空格:Hello World
去除两边的空格:HelloWorld
去除两边的空格:HelloWorld
```
可以看到,使用`strip()` 方法可以方便地去除字符串中的空格。
《python去除空格的方法》篇2
在Python 中,可以使用字符串方法`strip()` 来去除字符串中的空格。
`strip()` 方法会从字符串的两端去除所有的空格,包括开头和结尾的空格。
以下是一个示例代码:
```python
string = " Hello, World! "
string_without_spaces = string.strip()
print(string_without_spaces) # 输出:Hello,World!
```
在上面的代码中,我们首先定义了一个字符串`string`,其中包含了一些空格。
然后我们使用`strip()` 方法来去除字符串中的空格,并将结果存储在一个新的字符串`string_without_spaces` 中。
最后,我们打印出去除空格后的字符串。
除了`strip()` 方法之外,还可以使用`lstrip()` 和`rstrip()` 方法来分别去除字符串的开头和结尾的空格。
例如:
```python
string = " Hello, World! "
string_without_start_spaces = string.lstrip()
string_without_end_spaces = string.rstrip()
print(string_without_start_spaces) # 输出:Hello,
print(string_without_end_spaces) # 输出:Hello,World!
```
在上面的代码中,我们分别使用`lstrip()` 和`rstrip()` 方法来去除字符串的开头和结尾的空格,并将结果存储在
`string_without_start_spaces` 和`string_without_end_spaces` 中。
《python去除空格的方法》篇3
在Python 中,可以使用字符串方法`strip()` 来去除字符串中的空格。
`strip()` 方法会去除字符串中的所有空格,包括开头和结尾的空格。
以下是一个示例代码:
```python
string = "Hello World"
string_without_spaces = string.strip()
print(string_without_spaces)
```
输出结果为:
```
HelloWorld
```
另外,`strip()` 方法还可以接受一个可选参数,指定要去除的字符。
例如,要去除字符串中的空格和制表符,可以使用以下代码: ```python
string = "Hello Worldt"
string_without_spaces = string.strip(" ")
print(string_without_spaces)
```
输出结果为:
```
HelloWorld
```
在上面的代码中,`strip()` 方法的参数为`" "`,表示要去除空格。