Python数组元素添加修改与删除

数组 数组是一种有序的集合,能够随时添加和删除其中的元素。web 数组定义数组 student=['jack','Bob','Harry','Micle'] print(student) 访问数组元素 用索引来访问list中每个位置的元素,记得索引是从0开始的:app student=['jack','Bob','Harry','Micle'] print(student) print(stud
相关文章
相关标签/搜索