python自学第四课!
Posted starz224
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python自学第四课!相关的知识,希望对你有一定的参考价值。
replace()替换字符串
test = ‘starararar‘ v = test.replace(‘ar‘,‘bb‘,2) print(v) 结果:stbbbbarar
将输入的字符串的索引打印出来
test1 = input(">>>") for a in range(0,len(test1)) : print(a,test1[a])
以上是关于python自学第四课!的主要内容,如果未能解决你的问题,请参考以下文章