在本教程中,我们将借助示例了解 Python list() 构造函数。
list()
构造函数在 Python 中返回一个列表。
示例
text = 'Python'
# convert string to list
text_list = list(text)
print(text_list)
# check type of text_list
print(type(text_list))
# Output: ['P', 'y', 't', 'h', 'o', 'n']
# <class 'list'>
list() 语法
用法:
list([iterable])
参数:
list()
构造函数接受一个参数:
返回:
list()
构造函数返回一个列表。
- 如果没有传递参数,则返回一个空列表
- 如果 iterable 作为参数传递,它会创建一个包含 iterable 项的列表。
示例 1:从字符串、元组和列表创建列表
# empty list
print(list())
# vowel string
vowel_string = 'aeiou'
print(list(vowel_string))
# vowel tuple
vowel_tuple = ('a', 'e', 'i', 'o', 'u')
print(list(vowel_tuple))
# vowel list
vowel_list = ['a', 'e', 'i', 'o', 'u']
print(list(vowel_list))
输出
[] ['a', 'e', 'i', 'o', 'u'] ['a', 'e', 'i', 'o', 'u'] ['a', 'e', 'i', 'o', 'u']
示例 2:从集合和字典创建列表
# vowel set
vowel_set = {'a', 'e', 'i', 'o', 'u'}
print(list(vowel_set))
# vowel dictionary
vowel_dictionary = {'a': 1, 'e': 2, 'i': 3, 'o':4, 'u':5}
print(list(vowel_dictionary))
输出
['a', 'o', 'u', 'e', 'i'] ['o', 'e', 'a', 'u', 'i']
注意:在字典的情况下,字典的键将是列表的项目。此外,元素的顺序将是随机的。
示例 3:从迭代器对象创建列表
# objects of this class are iterators
class PowTwo:
def __init__(self, max):
self.max = max
def __iter__(self):
self.num = 0
return self
def __next__(self):
if(self.num >= self.max):
raise StopIteration
result = 2 ** self.num
self.num += 1
return result
pow_two = PowTwo(5)
pow_two_iter = iter(pow_two)
print(list(pow_two_iter))
输出
[1, 2, 4, 8, 16]
相关用法
- Python list remove()用法及代码示例
- Python list copy()用法及代码示例
- Python list转string用法及代码示例
- Python list insert()用法及代码示例
- Python lists转XML用法及代码示例
- Python list pop()用法及代码示例
- Python list index()用法及代码示例
- Python list sort()用法及代码示例
- Python list reverse()用法及代码示例
- Python linecache.getline()用法及代码示例
- Python scipy linalg.pinv2用法及代码示例
- 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 lzma.LZMACompressor()用法及代码示例
- Python log10()用法及代码示例
注:本文由纯净天空筛选整理自 Python list()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。