.. _arrays: ================= 数组 ================= .. index:: single: Arrays 数组是由从 0 到数组大小减 1 的整数索引的值序列。数组元素可以通过它们的索引来获取。:: let a=["I'm a string", 123] print(typeof a[0]) //打印 "string" print(typeof a[1]) //打印 "integer" 调整数组和数组元素的大小、插入、删除是通过一组标准函数完成的(see :ref:`built-in functions `).