码迷,mamicode.com
首页 > 其他好文 > 详细

替换空格

时间:2019-12-21 13:37:09      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:col   简单   nbsp   else   span   elf   def   happy   write   

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

 

这道题用python写是非常简单的,当读到空格时将%20加入到字符串中就好,如果读到的不是空格,就把读到的字符加入到字符串中。

python代码如下:

 1 # -*- coding:utf-8 -*-
 2 class Solution:
 3     # s 源字符串
 4     def replaceSpace(self, s):
 5         # write code here
 6         res = ‘‘;
 7         for i in s:
 8             if i ==  :
 9                 res += %20
10             else:
11                 res += i;
12         return res;

 

替换空格

标签:col   简单   nbsp   else   span   elf   def   happy   write   

原文地址:https://www.cnblogs.com/hellosnow/p/12076506.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!