tuple( seq )
seq -- 這是將被轉換成元組的元組。
#!/usr/bin/python3 list1= ['maths', 'che', 'phy', 'bio'] tuple1=tuple(list1) print ("tuple elements : ", tuple1)
tuple elements : ('maths', 'che', 'phy', 'bio')