python中的列表

Python內置的一種數據類型是列表:list。list是一種有序的集合,可以隨時添加和刪除其中的元素。 數組:存儲同一種數據類型的集合 scores=[12,13,14] 列表:(打了激素的數組):可以存儲任意數據類型的集合 一.創建列表 In [1]: name1 = 'tom' In [2]: name2 = 'lily' In [3]: name3 = 'bob' In [4]: name
相關文章
相關標籤/搜索