其他分享
首页 > 其他分享> > 7-7 sdut-输出字母在字符串中位置索引

7-7 sdut-输出字母在字符串中位置索引

作者:互联网

知识点:

逆序遍历range:只需要[::-1]即可
(从头到尾切片,步长设置为-1)

代码

s=input()
a,b=input().split()
for i in range(len(s))[::-1]:
    if s[i]==a or s[i]==b:
        print("{} {}".format(i,s[i]))

标签:知识点,步长,索引,range,split,sdut,字符串,input,逆序
来源: https://www.cnblogs.com/kingwz/p/16323201.html