Python的list()函數(shù)用于將序列(字符串、元組、集合等)轉(zhuǎn)換為列表。它可以接受一個(gè)可迭代對(duì)象作為參數(shù),并返回一個(gè)包含可迭代對(duì)象中所有元素的列表。
示例用法:
str_seq = "Hello"
list_seq = list(str_seq)
print(list_seq) # 輸出:['H', 'e', 'l', 'l', 'o']
tuple_seq = (1, 2, 3)
list_seq = list(tuple_seq)
print(list_seq) # 輸出:[1, 2, 3]
set_seq = {4, 5, 6}
list_seq = list(set_seq)
print(list_seq) # 輸出:[4, 5, 6]
list()函數(shù)的作用是方便地將其他類型的序列轉(zhuǎn)換為列表,以便進(jìn)行列表相關(guān)的操作,例如索引、切片、迭代等。