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))
找到第一个只出现一次的字符并返回它的位置(Python)
原文:http://www.cnblogs.com/UncleYong/p/7082893.html