美文网首页
4、替换空格

4、替换空格

作者: 小碧小琳 | 来源:发表于2018-10-02 10:22 被阅读0次

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

    版本Python2.7.3

    # -*- coding:utf-8 -*-
    class Solution:
        # s 源字符串
        def replaceSpace(self, s):
            # write code here
            res = ''
            for str in s:
                if str == ' ':
                    res += '%20'
                else:
                    res += str
            return res
            
    

    相关文章

      网友评论

          本文标题:4、替换空格

          本文链接:https://www.haomeiwen.com/subject/yliooftx.html