內(nèi)置的tuple()函數(shù)用于在Python中創(chuàng)建元組。
在Python中,元組是不可變的序列類型。使用tuple()是創(chuàng)建元組的方法之一。
tuple()的語法為:
tuple(iterable)
iterable(可選)-可迭代的(列表,范圍等)或迭代器對象
如果未將iterable傳遞給tuple(),則該函數(shù)將返回一個空的元組。
t1 = tuple() print('t1 =', t1) # 從列表中創(chuàng)建一個元組 t2 = tuple([1, 4, 6]) print('t2 =', t2) # 從字符串創(chuàng)建一個元組 t1 = tuple('Python') print('t1 =',t1) # 從字典創(chuàng)建一個元組 t1 = tuple({1: 'one', 2: 'two'}) print('t1 =',t1)
輸出結(jié)果
t1 = () t2 = (1, 4, 6) t1 = ('P', 'y', 't', 'h', 'o', 'n') t1 = (1, 2)
推薦閱讀:Python元組