python内置函数list详解

list函数功能

python内置函数list将可迭代对象转换为list类型,可以转换的对象有字符串,列表,元组,range函数的返回值,字典keys,values方法的返回值。

list函数语法

class list([iterable])

参数

  • iterable 可迭代对象

返回值

列表

示例代码

>>> list("abc")
['a', 'b', 'c']
>>> list(("ab", 2, "cd"))
['ab', 2, 'cd']
>>> list([4, 5, 6, 8,])
[4, 5, 6, 8]
>>> dic = {"name": '小明', 'age': 14}
>>> list(dic.keys())
['age', 'name']
>>> lsit(dic.values())
>>> list(dic.values())
[14, '\xe5\xb0\x8f\xe6\x98\x8e']

扫描关注, 与我技术互动

QQ交流群: 211426309

加入知识星球, 每天收获更多精彩内容

分享日常研究的python技术和遇到的问题及解决方案