python内置函数list将可迭代对象转换为list类型,可以转换的对象有字符串,列表,元组,range函数的返回值,字典keys,values方法的返回值。
class list([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