共计 573 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,list() 函数用于将其他可迭代对象(如字符串、元组、字典等)转换为列表。其语法如下:
list(iterable)
参数:
– iterable(可迭代对象):要转换为列表的可迭代对象。
返回值:返回一个新的列表。
示例:
string = "Hello"
list_string = list(string)
print(list_string) # 输出:['H', 'e', 'l', 'l', 'o']
tuple1 = (1, 2, 3)
list_tuple = list(tuple1)
print(list_tuple) # 输出:[1, 2, 3]
dict1 = {'a': 1, 'b': 2, 'c': 3}
list_dict = list(dict1)
print(list_dict) # 输出:['a', 'b', 'c']
注意:在使用 list() 函数转换字典时,只会返回字典的键(而不是值)。如果需要转换为包含键值对的列表,可以使用 dict.items() 方法。
丸趣 TV 网 – 提供最优质的资源集合!
正文完