blablabla
class Solution(object): def replaceSpaces(self, s): """ :type s: str :rtype: str """ a = s.split(' ') return '%20'.join(a)