Python3str去除空格⼀.去除str两端空格(strip())
a.去除左端空格 lstrip()
str0='abcdef'
str1=' abcdef'
print(str0)
print(str1.lstrip())
b.去除右端空格 rstrip()
str0='abcdef '
str1='abcdef '
print(str0)
print(str1.rstrip())
c.去除两端空格 strip()
str0=' abcdef '
str1=' abcdef '
print(str0)
print(str1.strip())
⼆.str空格替换(replace() 推荐使⽤)
str0=' a b c d e f '
字符串转数组去除空格str1=' a b c d e f '
print(str0)
place('',''))
三.str重新组合替换空格(使⽤split分割字符,后重新组合,效率低)
str0=' a b c d e f '
str1=' a b c d e f '
print(str0)
print(''.join(str1.split()))
四.正则表达式去空格(,⽤sub()⽅法替换)
import re
str0=' a b c d e f '
str1=' a b c d e f '
print(str0)print(re.sub(' ','',str1))
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论