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

替换空格

时间:2019-03-23 22:43:31      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:space   new   append   end   return   字符串   str   and   pre   

问题描述

请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。

代码

# -*- coding:utf-8 -*-
class Solution:
    # s 源字符串
    def replaceSpace(self, s):
        # write code here
        str = []
        num = s.count(' ')
        for char in s:
            if char == ' ' and num > 0:
                char = '%20'
                num -= 1
            str.append(char)

        newstr = ''.join(str)
        return newstr

替换空格

标签:space   new   append   end   return   字符串   str   and   pre   

原文地址:https://www.cnblogs.com/welan/p/10585800.html

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