文件——rstrip() lstrip()和 strip()zip() 函数

Posted 炫云云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件——rstrip() lstrip()和 strip()zip() 函数相关的知识,希望对你有一定的参考价值。

rstrip() 、lstrip()和 strip()

在对数据进行预处理的时候,我们经常会用到 strip() 函数来去除字符串或者字段前后的空格或换行符,但其实还有一个函数 rstrip(),是用来删除字符串末尾的指定字符(默认为空格),那这两个函数有什么区别呢,rstrip()又怎么使用呢?

此处的空格或换行符包含\\n, \\r, \\t, ’ ’

  • strip() : 移除字符串头尾的空格或换行符
  • rstrip():去除字符串右边的空格或换行符
  • lstrip() : 去除字符串左边的空格或换行符

去除指定字符

语法:str.rstrip(chars)

rstrip() 删除 string 字符串末尾的指定字符(默认为空格).

参数:chars – 指定删除的字符(默认为空格)

返回:返回删除 string 字符串末尾的指定字符后生成的新字符串。

str1 = "     this is string example....wow!!!     "
str2 = str1.rstrip()  # 默认是空格
print(str2)  # this is string example....wow!!!
str3 = "88888888this is string example....wow!!!8888888"
str4 = str3.rstrip("8")
print(str4)  # 88888888this is string example....wow!!!
str5 = str3.strip("8")
print(str5)  # this is string example....wow!!!

zip() 函数

zip() 函数用于将可迭代的对象作为参数,将对象中对应的元素打包成一个个元组,然后返回由这些元组组成的列表。

如果各个迭代器的元素个数不一致,则返回列表长度与最短的对象相同,利用 * 号操作符,可以将元组解压为列表。

参数说明:

  • iterabl – 一个或多个迭代器;

返回值

返回元组列表。

实例

以下实例展示了 zip 的使用方法:

>>>a = [1,2,3]
>>> b = [4,5,6]
>>> c = [4,5,6,7,8]
>>> zipped = zip(a,b)     # 打包为元组的列表
[(1, 4), (2, 5), (3, 6)]
>>> zip(a,c)              # 元素个数与最短的列表一致
[(1, 4), (2, 5), (3, 6)]
>>> zip(*zipped)          # 与 zip 相反,*zipped 可理解为解压,返回二维矩阵式
[(1, 2, 3), (4, 5, 6)]

以上是关于文件——rstrip() lstrip()和 strip()zip() 函数的主要内容,如果未能解决你的问题,请参考以下文章

Lstrip 和 Rstrip 不起作用,需要帮助从 Python 3 的输出中删除文本

Python误区之strip,lstrip,rstrip

python lstrip,rstrip 的 用法

python3----strip lstrip rstrip

ython strip lstrip rstrip使用方法

Python中strip()lstrip()rstrip()用法详解