Python 基礎(chǔ)教程

Python 流程控制

Python 函數(shù)

Python 數(shù)據(jù)類型

Python 文件操作

Python 對象和類

Python 日期和時間

Python 高級知識

Python 參考手冊

Python list() 使用方法及示例

Python 內(nèi)置函數(shù)

list()構(gòu)造函數(shù)在Python中返回一個列表。

list()的語法為:

list([iterable])

list()參數(shù)

list()構(gòu)造函數(shù)接受一個參數(shù):

list()返回值

list()構(gòu)造函數(shù)返回一個列表。

  • 如果未傳遞任何參數(shù),則返回一個空列表

  • 如果將iterable作為參數(shù)傳遞,它將創(chuàng)建一個由iterable的項目組成的列表。

示例1:從字符串,元組和列表創(chuàng)建列表

# 空列表
print(list())

# 元音字符串
vowel_string = 'aeiou'
print(list(vowel_string))

# 元音元組
vowel_tuple = ('a', 'e', 'i', 'o', 'u')
print(list(vowel_tuple))

# 元音列表
vowel_list = ['a', 'e', 'i', 'o', 'u']
print(list(vowel_list))

輸出結(jié)果

[]
['a', 'e', 'i', 'o', 'u']
['a', 'e', 'i', 'o', 'u']
['a', 'e', 'i', 'o', 'u']

示例2:從集合和字典創(chuàng)建列表

# 元音集
vowel_set = {'a', 'e', 'i', 'o', 'u'}
print(list(vowel_set))

# 元音的字典
vowel_dictionary = {'a': 1, 'e': 2, 'i': 3, 'o':4, 'u':5}
print(list(vowel_dictionary))

輸出結(jié)果

['a', 'o', 'u', 'e', 'i']
['o', 'e', 'a', 'u', 'i']

注意:對于字典,字典的鍵將成為列表的項。同樣,元素的順序?qū)⑹请S機(jī)的。

示例3:從迭代器對象創(chuàng)建列表

# 該類的對象是迭代器
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))

輸出結(jié)果

[1, 2, 4, 8, 16]

推薦閱讀: Python列表   Python 內(nèi)置函數(shù)

丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清