How to use Python strip Lstrip Rstrip

Source: Internet
Author: User
Note that a character array is passed in, and the compiler strips out all the corresponding characters at both ends until there are no matching characters, such as:

Copy the Code code as follows:


TheString = ' Saaaay Yes No yaaaass '
Print Thestring.strip (' say ')


TheString is removed sequentially from the characters in the [' s ', ' a ', ' Y '] array until the character is within the array. Therefore, the result of the output is:
Yes No
Quite simply, Lstrip and Rstrip are the same principle. Note: When there are no incoming parameters, the default is to remove the leading and trailing spaces.

Copy the Code code as follows:


TheString = ' Saaaay Yes No yaaaass '
Print Thestring.strip (' say ')
Print Thestring.strip (' say ') #say后面有空格
Print Thestring.lstrip (' say ')
Print Thestring.rstrip (' say ')


Operation Result:
Yes No
Es No
Yes No Yaaaass
Saaaay Yes No

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.