标签: python python-2.7 list
我如何在列表中找到相同对象的所有位置:
>>>a=['a','a','b','c','a'] >>>findplace('a') >>>[0,1,4]