pythonlist函数的用法_Python的list()函数

一、描述

list()函数是Python的内置函数。它可以将任何可迭代数据转换为列表类型,并返回转换后的列表。当参数为空时,list函数可以创建一个空列表。

二、语法list(object)

三、使用示例

1. 创建一个空列表(无参调用list函数)>>> test = list()

>>> test

[]

2. 将字符串转换为列表>>> test = list('cat')

>>> test

['c', 'a', 't']

3. 将元组转换为列表>>> a_tuple = ('I love Python.', 'I also love HTML.')

>>> test = list(a_tuple)

>>> test

['I love Python.', 'I also love HTML.']

4. 将字典转换为列表>>> a_dict = {'China':'Beijing', 'Russia':'Moscow'}

>>> test = list(a_dict)

>>> test

['China', 'Russia']

注意:将字典转换为列表时,会将字典的值舍去,而仅仅将字典的键转换为列表。如果想将字典的值全部转换为列表࿰

你可能感兴趣的:(pythonlist函数的用法)