📅  最后修改于: 2023-12-03 15:19:27.683000             🧑  作者: Mango
strip()
是Python中的一个字符串方法,用于去除字符串的首尾空格或指定的字符。
string.strip([char])
char
(可选): 指定的字符,在去除字符串首尾时将被删除,默认为空格。string = " Hello, World! "
new_string = string.strip()
print(new_string) # 输出: "Hello, World!"
string = "#####Title#####"
new_string = string.strip('#')
print(new_string) # 输出: "Title"
strip()
适用于以下一些常见情况:
username = input("请输入用户名:")
username = username.strip()
with open('file.txt', 'r') as file:
lines = [line.strip() for line in file]
data = " 1, 2, 3, 4 "
items = [item.strip() for item in data.split(',')]
strip()
方法返回的是去除首尾空格或字符后的新字符串,原始字符串并不会改变。replace()
。以上就是strip()
函数的介绍和用法。希望对你有所帮助!