原创 Python內置數據結構3

解構In [8]: lst = [1,2] In [9]: lst Out[9]: [1, 2] In [10]: first,second = lst  #解構 In [11]: print(first,second) 1 2按照元