Python元組tuple()
函式用於將專案列表轉換為元組。
語法
以下是tuple()
函式的語法 -
tuple( seq )
引數
返回值
以下範例顯示了tuple()
函式的用法 -
#!/usr/bin/python3
list1= ['maths', 'che', 'phy', 'bio']
tuple1=tuple(list1)
print ("tuple elements : ", tuple1)
執行上面程式碼,得到以下結果 -
tuple elements : ('maths', 'che', 'phy', 'bio')