找到第一个只出现一次的字符并返回它的位置(Python)

 

s = 'hellobaby'
def findchar(s):
    for i in s:
        if s.count(i)==1:
            return i, s.index(i)
m,n=findchar(s)
print('第一个出现一次的字符是{},位置是{}'.format(m,n))

原文地址:https://www.cnblogs.com/uncleyong/p/7082893.html