list()函数用于将其他数据类型转换为列表。它的语法如下:
list(iterable)
其中iterable
是一个可迭代对象,如字符串、元组、集合等。
示例:
# 将字符串转换为列表
str1 = "hello"
list1 = list(str1)
print(list1) # ['h', 'e', 'l', 'l', 'o']
# 将元组转换为列表
tuple1 = (1, 2, 3, 4)
list2 = list(tuple1)
print(list2) # [1, 2, 3, 4]
# 将集合转换为列表
set1 = {1, 2, 3, 4}
list3 = list(set1)
print(list3) # [1, 2, 3, 4]
# 将range对象转换为列表
range1 = range(5)
list4 = list(range1)
print(list4) # [0, 1, 2, 3, 4]