要提取数组中的某个元素,可以使用索引来访问数组中的元素。
以下是一些示例代码:
# 提取数组中的第一个元素arr = [1, 2, 3, 4, 5]first_element = arr[0]print(first_element) # 输出结果为 1# 提取数组中的最后一个元素last_element = arr[-1]print(last_element) # 输出结果为 5# 提取数组中的其他元素second_element = arr[1]third_element = arr[2]print(second_element, third_element) # 输出结果为 2 3注意,数组的索引从0开始,因此第一个元素的索引为0,第二个元素的索引为1,依此类推。而负数索引可以从末尾开始计数,例如-1表示最后一个元素,-2表示倒数第二个元素,以此类推。

