python3筆記 4 Python中表示'組'的概念與定義

4-1 列表的定義 列表是可變的 >>> type([1,2,3,4,5,6]) <class 'list'> >>> type(['hello',1,2,3]) <class 'list'>    //列表中可以有不同的數據類型 >>> type([[1,2],[3,4],[True]])    <class 'list'>    //列表中嵌套列表,二維數組,python中叫做嵌套列表 4-2
相關文章
相關標籤/搜索