请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如当字符串为‘We Are Happy’。经过替换之后为:We%20Are%20Happy。
1 class Solution: 2 # s 源字符串 3 def replaceSpace(self, s): 4 return s.replace(' ', '%20')