Python simulates removing whitespace on both sides of a string

Source: Internet
Author: User

Goal:
1. Using the whitespace of the string module
2. Delete left, right, and white space on both sides

The code is as follows:

[email protected] python]# cat rmspace.py

#!/usr/bin/env python#Coding:utf8"""use a string to remove left and right whitespace. """ fromStringImportwhitespace#Delete the left blankdefLrmsps (ASTR): forIinchxrange (len (ASTR)):ifAstr[i] not inchwhitespace:returnAstr[i:]#when all whitespace characters are entered, NULL is returned.    return "'#Delete the blank on the right and start judging from the right of the list. defRrmsps (ASTR): forIinchReversed (xrange (Len (ASTR))):ifAstr[i] not inchwhitespace:returnAstr[:(i+1)]    return "'#Delete left and right sides of white spacedefRmsps (ASTR):returnRrmsps (Lrmsps (ASTR))if __name__=='__main__': Hi='Hello,world. '    Print 'Delete left blank: |%s|'%Lrmsps (HI)Print 'Delete Right blank: |%s|'%Rrmsps (HI)Print 'Delete both sides blank: |%s|'% Rmsps (HI)

2. Run the code and test the effect

[[email protected] python] # python rmspace.py Delete left blank: |hello,world.      | Delete right margin:|    hello,world.| Delete both sides blank:|hello,world.|

Python simulates removing whitespace on both sides of a string

Related Article

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.