python去掉字符串所有空格
发布网友
发布时间:2022-04-25 15:36
我来回答
共3个回答
懂视网
时间:2022-04-06 18:44
python如何去掉空格?下面给大家带来几种常见的方法:
a=' ddd dfe dfd efre ddd '
a
' ddd dfe dfd efre ddd '
1.strip():把头和尾的空格去掉
a.strip()
'ddd dfe dfd efre ddd'
2.lstrip():把左边的空格去掉
In[5]: a.lstrip()
Out[5]: 'ddd dfe dfd efre ddd '
3.rstrip():把右边的空格去掉
热心网友
时间:2022-04-06 15:52
字符串,rm为要删除的字符序列
str.strip(rm) : 删除s字符串中开头、结尾处,位于 rm删除序列的字符
str.lstrip(rm) : 删除s字符串中开头(左边)处,位于 rm删除序列的字符
str.rstrip(rm) : 删除s字符串中结尾(右边)处,位于 rm删除序列的字符
str.replace(‘s1’,’s2’) : 把字符串里的s1替换成s2。故可以用replace(’ ‘,”)来去掉字符串里的所有空格
str.split() : 通过指定分隔符对字符串进行切分,切分为列表的形式。
去除两边空格:
>>> str = ' hello world '
>>> str.strip()
'hello world'
1
2
3
1
2
3
去除开头空格:
>>> str.lstrip()
'hello world '
1
2
1
2
去除结尾空格:
>>> str.rstrip()
' hello world'
1
2
1
2
去除全部空格:
>>> str.replace(' ','')
'helloworld'
1
2
1
2
将字符串以空格分开:
>>> str.split()
['hello', 'world']
>>>
热心网友
时间:2022-04-06 17:10
用replace函数,举例:
s='dkf cdk2545 46'
sn=s.replace(' ','')
print(sn)