字符串--空格替换

    技术2024-12-24  12

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

    # -*- coding:utf-8 -*- class Solution: # s 源字符串 def replaceSpace(self, s): # write code here res=[] for i in s: r=i if i!=' ' else '%20' res.append(r) #if i==' ': # res.append('%20') #else: # res.append(i) return(''.join(res))

    方法2,按空格将字符串分割为列表,在join时,使用‘%20‘作为连接符

    res_l=s.split() return (('%20).join(res_l))
    Processed: 0.008, SQL: 12