python list() 在 python 中创建一个列表。
签名
list(iterable)
参数
iterable(可选)- 一个可以是序列(字符串、元组等)或集合(集合、字典等)或迭代器对象的对象。
返回
它返回一个列表。
Python list() 函数示例 1
下面的示例从序列:字符串、元组和列表创建一个列表。
# empty list
print(list())
# string
String = 'abcde'
print(list(String))
# tuple
Tuple = (1,2,3,4,5)
print(list(Tuple))
# list
List = [1,2,3,4,5]
print(list(List))
输出:
[] ['a', 'b', 'c', 'd', 'e'] [1,2,3,4,5] [1,2,3,4,5]
说明:上面的例子从序列:字符串、元组和列表中创建了一个列表。
Python list() 函数示例2
下面的示例从 collection:set 和字典创建列表。
# set
Set = {'a', 'b', 'c', 'd', 'e'}
print(list(Set))
# dictionary
Dictionary = {'a':1, 'b':2, 'c':3, 'd':4, 'e':5}
print(list(Dictionary))
输出:
['e', 'c', 'd', 'b', 'a'] ['c', 'e', 'd', 'b', 'a']
相关用法
- Python list()用法及代码示例
- Python list remove()用法及代码示例
- Python list index()用法及代码示例
- Python list copy()用法及代码示例
- Python list insert()用法及代码示例
- Python list pop()用法及代码示例
- Python list sort()用法及代码示例
- Python list reverse()用法及代码示例
- Python linecache.getline()用法及代码示例
- Python locals()用法及代码示例
- Python PIL logical_and() and logical_or()用法及代码示例
- Python len()用法及代码示例
- Python numpy string less_equal()用法及代码示例
- Python calendar leapdays()用法及代码示例
- Python ldexp()用法及代码示例
- Python PIL logical_xor() and invert()用法及代码示例
- Python log10()用法及代码示例
- Python Functools lru_cache()用法及代码示例
- Python lzma.LZMACompressor()用法及代码示例
- Python string lstrip()用法及代码示例
注:本文由纯净天空筛选整理自 Python list() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。