python入門list和tuple,dict和set

1.list:一種有序的集合,可以隨時添加和刪除其中的元素 用 [ ] 把list所有元素括起來,就是list對象。 list中包含的元素可以不是同一種類型,也可以一個元素都沒有。 例: classmates = ['Michael', 'Bob', 'Tracy'] L = ['Michael', 100, True] empty_list = [] 1.1訪問list:通過索引獲取list中
相關文章
相關標籤/搜索