Python 查找字符在字符串中的位置实例
2018-10-15 17:38
阅读:718
如下所示:
运行结果:7
========是使用find==========
结果:5
========如何查找所有‘i在字符串中位置呢?===========
#开挂模式 str_1=wo shi yi zhi da da niu char_1=str(input(Please input the Char you want:)) count=0 str_list=list(str_1) for each_char in str_list: count+=1 if each_char==char_1: print(each_char,count-1)运行结果:
Please input the Char you want:i i 0 i 1 i 2 i 3以上这篇Python 查找字符在字符串中的位置实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:Python 查找字符在字符串中的位置实例
文章链接:http://soscw.com/index.php/essay/18863.html
文章标题:Python 查找字符在字符串中的位置实例
文章链接:http://soscw.com/index.php/essay/18863.html
评论
亲,登录后才可以留言!