返回指定值最后一次出现的下标。
array.last_index_of(value)
items = ['a', 'b', 'a'] result = items.last_index_of('a') // 输出:2 print result