Removing Leading and Trailing Whitespace with the strip() Function
The strip()
function removes whitespace (spaces, tabs, etc.) from both ends of a string.
Example of using the strip() function
text = " Hello, nice to meet you! " stripped_text = text.strip() print(stripped_text) # "Hello, nice to meet you!"
This function is commonly used to clean up input received from users by removing unnecessary spaces, thereby normalizing the input value.
Removing Specific Characters
By providing an argument to the strip()
function, you can remove specific characters from both ends of a string.
Example of removing specific characters
text = "xxxHello, nice to meet you!xxx" stripped_text = text.strip('x') # "Hello, nice to meet you!" print(stripped_text)
Mission
0 / 1
The strip() function can only remove whitespace from the beginning of a string.
O
X
Guidelines
AI Tutor
Publish
Design
Upload
Notes
Favorites
Help
Code Editor
Run
Generate
Execution Result