码迷,mamicode.com
首页 > 编程语言 > 详细

字符串替换空格-Python

时间:2019-10-30 09:23:13      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:ret   href   content   pytho   tar   时间   字符串   lan   col   

题目描述

请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。
时间限制:1秒 空间限制:32768K 热度指数:1240896
本题知识点: 字符串
 
1.Python的replace方法

运行时间:36ms

占用内存:5712k

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

 

字符串替换空格-Python

标签:ret   href   content   pytho   tar   时间   字符串   lan   col   

原文地址:https://www.cnblogs.com/xl717/p/11762813.html

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