要提取數組中的某個元素,可以使用索引來訪問數組中的元素。
以下是一些示例代碼:
# 提取數組中的第一個元素
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表示倒數第二個元素,以此類推。