全国旗舰校区

不同学习城市 同样授课品质

北京

深圳

上海

广州

郑州

大连

武汉

成都

西安

杭州

青岛

重庆

长沙

哈尔滨

南京

太原

沈阳

合肥

贵阳

济南

下一个校区
就在你家门口
+
当前位置:首页  >  技术干货

python去掉空格函数

发布时间:2023-07-21 11:08:14
发布人:xqq

python几种去掉字符串中间空格的方法

一、strip()方法:去除字符串开头或结尾的空格

a = " a b c "

a.strip()

'a b c'

二、lstrip()方法:去除字符串开头的空格

a = " a b c "

a.lstrip()

'a b c '

三、rstrip()方法:去除字符串结尾的空格

a = " a b c "

a.rstrip()

' a b c'

四、replace()方法:可以去除全部空格,主要用于字符串的替换

a = " a b c "

a.replace(" ", "")

'abc'

五、join()方法+split()方法:可以去除全部空格,join为字符串合成传入一个字符串列表,split用于字符串分割,可以按规则进行分割。

a = " a b c "

b = a.split() # 字符串按空格分割成列表

b ['a', 'b', 'c']

c = "".join(b) # 使用一个空字符串合成列表内容生成新的字符串

c 'abc'

# 快捷用法

a = " a b c "

"".join(a.split())

'abc'

python去掉空格常用方式有哪些?

1.去掉左边空格

string = " * it is blank space test * "

print (string.lstrip())

result:

* it is blank space test *

2.去掉右边空格

string = " * it is blank space test * "

print (string.rstrip())

result:

* it is blank space test *

3.去掉左右两边空格

string = " * it is blank space test * "

print (string.strip())

result:

* it is blank space test *

4.去掉所有空格

有两种方式

eg1:调用字符串的替换方法把空格替换成空

string = " * it is blank space test * "

str_new = string.replace(" ", "")

print str_new

result:

*itisblankspacetest*

eg2:正则匹配把空格替换成空

import re

string = " * it is blank space test * "

str_new = re.sub(r"\s+", "", string)

print str_new

result:

*itisblankspacetest*

关于python去掉空格常用方式有哪些,环球青藤小编就和大家分享到这里了,学习是永无止境的,学习一项技能更是受益终身,所以,只要肯努力学,什么时候开始都不晚。如果您还想继续了解关于python编程的学习方法及素材等内容,可以点击本站其他文章学习。

python去掉字符串所有空格

字符串,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']

python怎么去除文本多余空格

'''

在Python中字符串处理函数里有三个去空格的函数:

strip 同时去掉左右两边的空格

lstrip 去掉左边的空格

rstrip 去掉右边的空格

'''

#具体示例如下:

a=" gho  stwwl "

print(a.lstrip())

print(a.rstrip())

print(a.strip())

#去掉中间多余的空格

s=''

for i in range(len(a)):

    if a[i]==' ' and ilen(a)-1 and a[i+1]==' ':

        continue

    s+=a[i]

print(s)#配合strip()使用,全部多余空格去掉

Python中的去除字符串中的空格和特殊字符的方法有哪些呢?

strip只能去除前后空白字符或指定字符。要去掉字符串中间的空白字符或指定字符,可以使用replace方法

千锋教育是专业的IT培训机构,提供java培训、大数据培训python培训web前端培训等专业IT技能提升服务,如果您有IT培训需求,欢迎联系千锋教育。

#python去空格的函数

相关文章

项目目标有哪些?

项目目标有哪些?

2023-10-15
为什么Delphi的编译速度很快?

为什么Delphi的编译速度很快?

2023-10-15
任务管理系统的优势是什么?

任务管理系统的优势是什么?

2023-10-15
c#为什么不脱离.net平台?

c#为什么不脱离.net平台?

2023-10-15

最新文章

常见网络安全面试题:Windows常用的命令有哪些?

常见网络安全面试题:Windows常用的命令有哪些?

2023-10-09
常见网络安全面试题:根据设备告警如何展开排查?

常见网络安全面试题:根据设备告警如何展开排查?

2023-10-09
常见网络安全面试题:mysql加固呢?(数据库加固)

常见网络安全面试题:mysql加固呢?(数据库加固)

2023-10-09
常见网络安全面试题:windows和linux加固?(操作系统加固)

常见网络安全面试题:windows和linux加固?(操作系统加固)

2023-10-09
在线咨询 免费试学 教程领取