python - Leetcode面试题:请实现一个函数,把字符串 s 中的每个空格替换成"%20"
2021/11/25 1:10:29
本文主要是介绍python - Leetcode面试题:请实现一个函数,把字符串 s 中的每个空格替换成"%20",对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
要求
输入: s = "we are tester"
输出:we%20are%20tester
index() 函数语法
# index() 方法检测字符串中是否包含子字符串 str fruits = ['apple', 'banana', 'cherry'] r = fruits.index("cherry") print(r) # 2
替换函数
# -*- coding: utf-8 -*- def replaceSpace(s): """ 把字符串 s 中的每个空格替换成"%20 :param s: 字符串 :return: """ li = [] # 定义空列表 # 遍历 for i in s: li.append(i) # print(li) ['w', 'e', ' ', 'a', 'r', 'e', ' ', 't', 'e', 's', 't', 'e', 'r'] for i in li: if i == ' ': li[li.index(i)] = '%20' return ''.join(li) if __name__ == '__main__': s = "we are tester" r = replaceSpace(s) print(r) # we%20are%20tester
方法二
python里面有个replace方法可以直接替换字符串,
但是一般面试官对这个回答不太满意,因为.......
s = "We are tester" print(s.replace(" ", "%20")) # We%20are%20tester
------分界线------
我们大多数人的努力程度还配不上谈论天赋的地步
这篇关于python - Leetcode面试题:请实现一个函数,把字符串 s 中的每个空格替换成"%20"的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程