在程式語言的領域裡,subscript 是用於指出陣列特定項目的表示法,換言之,其實就是索引(index)的作用。
test_array = ["A", "B", "C"] print(test_array[1]) #test_array 後面的 [1] 就是 subscript