python去除字符串中间空格的方法

Posted 施浩宇

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python去除字符串中间空格的方法相关的知识,希望对你有一定的参考价值。

1、使用字符串函数replace

1 a = hello world
2 a.replace( , ‘‘)
3 # ‘helloworld‘

2、使用字符串函数split

1 a = ‘‘.join(a.split())
2 print(a)
3 # helloworld

3、使用正则表达式

1 import re
2 strinfo = re.compile()
3 strinfo = re.compile( )
4 
5 b = strinfo.sub(‘‘, a)
6 print(b)
7 # helloworld

4、int(对于数字)

content = input("请输入内容:").strip() #可输入1 + 3
# print(‘‘.join(content.split()))
index = content.find("+")
a = content[0:index]
b = content[index+1:]
print(int(a)+int(b))  #转化以后,自动去除空格

 

以上是关于python去除字符串中间空格的方法的主要内容,如果未能解决你的问题,请参考以下文章

Java中去除字符串中所有空格的几种方法

Java中去除字符串中所有空格的几种方法

python如何去除字符串里面的空格

python 去除字符串中的空格

python字符串中怎么忽略空格前面的数字

正则去除字符串前后中间空格