一.求列表中某个元素的下标 def findindex(org, x, pos=-1): counts = org.count(x) #先求出org中包含x的个数 if counts == 0: #个数为0,说明不存在x print(org, '中没有', x) elif counts == 1: #个数为1,说明结果唯一,直接返回index(x) print(org.index(x)) else: ''' 个数大于1时,从下标为0的位置开始查找 找到一个后,先打印下标位置,再从该位置的下一个位…