python字符串内建函数-lstrip 、rstrip、strip

python字符串内建函数-lstrip 、rstrip、strip

14、lstrip

函数功能:该函数用于截掉字符串左边的空格或指定字符

返回值:该函数的返回值是一个新的字符串

函数语法str.lstrip([char])

  • 指定截取的字符串,默认为空格
# lstrip
str1 = "  hello world I love python"
print(str1.lstrip()) # hello world I love python

15、rstrip

函数功能:该函数用于截掉字符串右边的空格或指定字符

返回值:该函数的返回值是一个新的字符串

函数语法str.rstrip([char])

  • 指定截取的字符串,默认为空格
# rstrip
str1 = "  hello world I love python  "
print(str1.rstrip()) #   hello world I love python

16、strip

函数功能:该函数用于截掉字符串头尾指定的字符

返回值:该函数的返回值是一个新的字符串

函数语法str.strip([char])

  • 指定截取的字符串,默认为空格
# strip
str1 = "  hello world I love python  "
print(str1.strip()) # hello world I love python

注:python字符串内建函数还有很多,查看更多点击下面链接:

  • python 字符串内建函数

  • python 字符串内建函数-find、index、count

  • python字符串内建函数-replace、split

  • python字符串内建函数-capitalize、title、upper

  • python字符串内建函数-startwith、endwith

  • python字符串内建函数-ljust、rjust、center

你可能感兴趣的:(python,#,基础知识,python,字符串)