python清除字符串中间空格的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python清除字符串中间空格的方法相关的知识,希望对你有一定的参考价值。
1、使用字符串函数replace
>>> a = ‘hello world‘
>>> a.replace(‘ ‘, ‘‘)
‘helloworld‘
- 1
- 2
- 3
- 4
看上这种方法真的是很笨。
2、使用字符串函数split
>>> a = ‘‘.join(a.split())
>>> print(a)
helloworld
- 1
- 2
- 3
- 4
3、使用正则表达式
>>> import re
>>> strinfo = re.compile()
>>> strinfo = re.compile(‘ ‘)
>>> b = strinfo.sub(‘‘, a)
>>> print(b)
helloworld
以上是关于python清除字符串中间空格的方法的主要内容,如果未能解决你的问题,请参考以下文章