使用list的index方法可以找到list中第壹次出現該元素的位置
>>>?find='b'
>>>?l.index(find)
1
找出出現該元素的所有位置可以使用壹個簡單的表理解來實現
>>>?[i?for?i,v?in?enumerate(l)?if?v==find]
[2,?3,?5]