使用Python中的strip()方法删除字符串中的空格和指定字符
在Python中,strip()是用于删除字符串开头和结尾处指定字符(默认为空格)的方法。以下是strip()的用法示例:
1、删除字符串开头和结尾的空格:
string = " hello, world " new_string = string.strip() print(new_string) # Output: "hello, world"
2、删除字符串开头和结尾的指定字符:
string = "---hello, world---" new_string = string.strip("-") print(new_string) # Output: "hello, world"
3、删除字符串开头的指定字符:
string = "+++hello, world" new_string = string.lstrip("+") print(new_string) # Output: "hello, world"
4、删除字符串结尾的指定字符:
string = "hello, world---" new_string = string.rstrip("-") print(new_string) # Output: "hello, world"
注意,strip()方法不会修改原始字符串,而是返回一个新的字符串。此外,strip()方法是大小写敏感的。
相关文章