strip()函数是python中内置函数的一部分。 该函数将从原始字符串的开头和结尾删除给定的字符。
默认情况下,函数strip()将删除字符串开头和结尾的空格,并返回前后不带空格的相同字符串。
语法
string.strip([characters])
示例1:strip方法
str1 = "Welcome to Guru99!"
after_strip = str1.strip()
输出
Welcome to Guru99!
示例2:把strip用于无效的数据类型
strip()函数仅适用于字符串,如果用于列表,元组等任何其他数据类型,则将返回错误。
比如在list()上使用时的示例
mylist = ["a", "b", "c", "d"]
print(mylist.strip())
就会抛出一个错误:
Traceback (most recent call last):
File "teststrip.py", line 2, in <module>
print(mylist.strip())
AttributeError: 'list' object has no attribute 'strip'
示例3:不带字符参数
str1 = "Welcome to Guru99!"
after_strip = str1.strip()
print(after_strip)
输出
Welcome to Guru99!
示例4:传递字符参数
str1 = "****Welcome to Guru99!****"
after_strip = str1.strip("*")
print(after_strip)
str2 = "Welcome to Guru99!"
after_strip1 = str2.strip("99!")
print(after_strip1)
str3 = "Welcome to Guru99!"
after_strip3 = str3.strip("to")
print(after_strip3)
输出
Welcome to Guru99!
Welcome to Guru
Welcome to Guru99!