1 #tuple函數的功能和list函數基本上一樣,都是以一個序列作為參數,並把它轉換為元組。如果參數是元組,參數就會被原樣返回。
2 #示例如下:
3 >>> tuple('hello','world') #參數是元組
4 Traceback (most recent call last):
5 File "<pyshell#52>", line 1, in <module>
6 tuple('hello','world') #參數是元組
7 TypeError: tuple() takes at most 1 argument (2 given)
8 >>> tuple(('hello','world')) #參數是元組
9 ('hello', 'world')
10 #由上面的操作看到,tuple函數傳入元組參數後,得到的返回值就是傳入的參數。
1 #tuple函數的功能和list函數基本上一樣,都是以一個序列作為參數,並把它轉換為元組。如果參數是元組,參數就會被原樣返回。
2 #示例如下:
3 >>> tuple('hello','world') #參數是元組
4 Traceback (most recent call last):
5 File "<pyshell#52>", line 1, in <module>
6 tuple('hello','world') #參數是元組
7 TypeError: tuple() takes at most 1 argument (2 given)
8 >>> tuple(('hello','world')) #參數是元組
9 ('hello', 'world')
10 #由上面的操作看到,tuple函數傳入元組參數後,得到的返回值就是傳入的參數。