📅  最后修改于: 2023-12-03 15:36:43.309000             🧑  作者: Mango
Python中字符串的修剪指的是从字符串的开头和结尾删除不需要的字符,例如空格、制表符、换行符等。在Python中,可以使用以下方法来修剪字符串:
strip()
函数用于从字符串的开头和结尾删除指定字符,默认删除空格。可以传入一个参数指定要删除的字符。
str = " hello world "
print(str.strip()) # 输出:hello world
str = "---hello world---"
print(str.strip("-")) # 输出:hello world
lstrip()
函数用于从字符串的开头删除指定字符,默认删除空格。也可以传入一个参数指定要删除的字符。
str = " hello world "
print(str.lstrip()) # 输出:hello world
str = "---hello world---"
print(str.lstrip("-")) # 输出:hello world---
rstrip()
函数用于从字符串的结尾删除指定字符,默认删除空格。也可以传入一个参数指定要删除的字符。
str = " hello world "
print(str.rstrip()) # 输出: hello world
str = "---hello world---"
print(str.rstrip("-")) # 输出:---hello world
replace()
函数用于将字符串中的指定字符替换为另一个字符。
str = "hello world"
print(str.replace("w", "W")) # 输出:hello World
总结:
以上就是Python中修剪字符串的方法介绍,它们可以用来处理用户输入、读取文本数据等常见的任务,非常实用。