Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

stripping whitespace in python

greet = '      Hello Bob      '
# This is how we strip the whitespace at the beginning
print(greet.lstrip())       # Output: Hello Bob
                            # The whitespace at the end remains
# This is how we strip the whitespace at the end
print(greet.rstrip())       # Output:       Hello Bob
                            # The whitespace at the beginning remains
# This is how we strip the whitespaces at both the beginning and at the end
print(greet.strip())        # Output: Hello Bob
                            # White spaces at beginning and at end have removed
# But remember the initial string is not changed
print(greet)                # Output:       Hello Bob
Source by www.py4e.com #
 
PREVIOUS NEXT
Tagged: #stripping #whitespace #python
ADD COMMENT
Topic
Name
4+1 =