Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例 [1,2,3,4,1,2]
最小要素は 1 ですが、インデックス 4 で最後に発生します。
len(myList)-1 - myList[::-1].index(min(list))
これは、スライス表記list[::-1]を使用して反転リストの浅いコピーを返すため、元のリストが変更されず、そのリストの最小値が検索されます
list[::-1]
>>>myList = [1,2,3,4,1,2] >>>len(myList)-1 - myList[::-1].index(min(list)) 4