Python元組tuple()方法

2019-10-16 23:05:57

Python元組tuple()函式用於將專案列表轉換為元組。

語法

以下是tuple()函式的語法 -

tuple( seq )

引數

  • seq - 這是一個要轉換成元組的元組。

返回值

  • 此函式返回元組最小值的元素。

例子

以下範例顯示了tuple()函式的用法 -

#!/usr/bin/python3

list1= ['maths', 'che', 'phy', 'bio']
tuple1=tuple(list1)
print ("tuple elements : ", tuple1)

執行上面程式碼,得到以下結果 -

tuple elements :  ('maths', 'che', 'phy', 'bio')