How to remove all spaces from a string in python

藏色散人
Release: 2023-01-03 09:27:25
Original
86134 people have browsed it

Python method to remove all spaces in a string: 1. Use the strip method to remove spaces at the beginning or end of the string; 2. Use the replace method to remove spaces at the end of the string; 3. Use the join method and the split method to remove All spaces.

How to remove all spaces from a string in python

The operating environment of this article: Windows 7 system, python version 3.5, DELL G3 computer.

1: strip() method, remove the spaces at the beginning or end of the string

>>> a = " a b c "
>>> a.strip()
'a b c'
Copy after login

2: lstrip() method, remove the spaces at the beginning of the string

>>> a = " a b c "
>>> a.lstrip()
'a b c '
Copy after login

3: rstrip() method, remove the spaces at the end of the string

>>> a = " a b c "
>>> a.rstrip()
' a b c'
Copy after login

4: replace() method, you can remove all spaces

# replace主要用于字符串的替换replace(old, new, count)
>>> a = " a b c "
>>> a.replace(" ", "")
'abc'
Copy after login

5: join() method split() method, you can remove all Space

# join为字符字符串合成传入一个字符串列表,split用于字符串分割可以按规则进行分割
>>> a = " a b c "
>>> b = a.split()  # 字符串按空格分割成列表
>>> b ['a', 'b', 'c']
>>> c = "".join(b) # 使用一个空字符串合成列表内容生成新的字符串
>>> c 'abc'
 
# 快捷用法
>>> a = " a b c "
>>> "".join(a.split())
'abc'
Copy after login

【Recommended learning: python video tutorial

The above is the detailed content of How to remove all spaces from a string in python. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!