码迷,mamicode.com
首页 > 其他好文 > 详细

删除字符串中多余的空格

时间:2015-10-06 16:45:08      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:

#! /usr/bin/python
# -*- coding:‘utf-8‘-*-

text=ab cc    sdddd 
print  .join(n for n in text.split( ) if n)

data=[]
word=‘‘
for letter in text:
    if letter!=  :
        word+=letter
    else:
        if word:
            data.append(word)
            word=‘‘
if word:
    data.append(word)


print  .join(data)
print ‘ ‘.join(n for n in text.split(‘ ‘) if n)一句就可以搞定,
后面的实现比较麻烦,有点绕

删除字符串中多余的空格

标签:

原文地址:http://www.cnblogs.com/Citizen/p/4857308.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!