Home  >  Article  >  Backend Development  >  Example code for removing spaces and newlines in Python

Example code for removing spaces and newlines in Python

高洛峰
高洛峰Original
2017-03-24 17:05:582424browse

1. Remove spaces
strip()
" xyz ".strip() # returns "xyz"
" xyz ".lstrip() # returns "xyz "
" xyz ".rstrip() # returns " xyz"
" x y z ".replace(' ', '') # returns "xyz"
2. Replacement("space"," ")
Use replace("\n", "") to replace the preceding

The above is the detailed content of Example code for removing spaces and newlines in Python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn