当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python list()用法及代码示例


在本教程中,我们将借助示例了解 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() 构造函数接受一个参数:

  • 可迭代(可选)- 一个可以是序列的对象(string,元组) 或集合 (,字典) 或任何迭代器对象

返回:

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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。