woshizhangpengp 发表于 2023-7-11 15:16:13

strip是什么功能

请问各位大佬,strip是什么用法,什么功能,速查宝典里面没有这个

陶远航 发表于 2023-7-11 15:16:23

strip 是一个字符串方法,用于去除字符串两端的指定字符(默认为空格)。

它的用法是:string.strip(characters),其中 string 是要处理的字符串,characters 是可选参数,指定要去除的字符。

具体功能如下:
- 如果没有提供 characters 参数,strip() 默认删除字符串两端的所有空格(包括换行符、制表符等)。
- 如果提供了 characters 参数,strip() 将删除字符串两端连续出现的 characters 字符序列。

以下是一些例子来说明 strip() 的用法:

string = "Hello, World!"

# 去除字符串两端的空格
stripped_string = string.strip()
print(stripped_string)# 输出: "Hello, World!"

# 去除字符串右侧的感叹号
stripped_string = string.rstrip("!")
print(stripped_string)# 输出: "Hello, World"

# 去除字符串两端的逗号和空格
stripped_string = string.strip(", ")
print(stripped_string)# 输出: "Hello, World!"



希望以上解释可以帮助您理解 strip() 的功能和用法。如有任何进一步的问题,请随时提问。

isdkz 发表于 2023-7-11 15:17:39

https://fishc.com.cn/thread-183975-1-1.html

liuhongrun2022 发表于 2023-7-11 15:19:34

strip是去除字符串两边的空格
页: [1]
查看完整版本: strip是什么功能