1. 程式人生 > >劍指offer第二題 替換空格

劍指offer第二題 替換空格

題目描述

請實現一個函式,將一個字串中的每個空格替換成“%20”。例如,當字串為We Are Happy.則經過替換之後的字串為We%20Are%20Happy。

思路

一行程式碼,利用字串的replace方式實現

# -*- coding:utf-8 -*-
class Solution:
    # s 源字串
    def replaceSpace(self, s):
        # write code here
        return s.replace(' ', '%20')