python去掉字符串两边的空格
时间: 2023-07-24 07:30:22 浏览: 107
可以使用Python内置函数`strip()`来去掉字符串两边的空格。如下所示:
```python
string = " hello world "
new_string = string.strip()
print(new_string) # 输出 "hello world"
```
`strip()`函数还可以指定要去掉的字符,如去掉字符串两边的换行符和空格:
```python
string = "\n hello world \n"
new_string = string.strip("\n ")
print(new_string) # 输出 "hello world"
```
相关问题
python如何去除字符串两边的空格
在Python中,可以使用字符串的`strip()`方法来去除字符串两边的空格。示例代码如下:
```python
s = ' hello, world! '
s = s.strip()
print(s)
```
输出结果为:
```
'hello, world!'
```
`strip()`方法可以去除字符串两边的空格,如果想去除左边或右边的空格,可以使用`lstrip()`或`rstrip()`方法。
接受一个学生名字,怎么去除字符串两边空格
你可以使用Python中的strip()函数来去除字符串两边的空格,示例代码如下:
```
student_name = input("请输入学生姓名:")
student_name = student_name.strip()
print("去除空格后的学生姓名为:", student_name)
```
这段代码可以接受用户输入的学生姓名,然后使用strip()函数去除字符串两边的空格,并输出去除空格后的学生姓名。
阅读全文