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