Python查找list中的某个元素的所有的下标⽅法 如下所⽰:#!/usr/bin/env python #_*_ coding:utf-8 _*_name = ['hello', 'world', 'a', 'b', 'c', 1, 2, 3, 'hello', 'world', 'a', 'b', 'c', 1, 2, 3]first_pos = 0 for i in range(name.count(2)):new_list = ...