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


Python list()用法及代码示例


Python list() 函数

list() 函数是一个库函数,用于创建一个列表,它接受括号内的多个元素(因为 list() 只接受一个参数。因此,括号内的元素集合被视为单个参数)。

用法:

    list((elements))

参数: elements– 元素列表。

返回值: list– 它返回给定元素的列表。

例:

    Input:
    students = list(("Amit shukla", "prem", "Radib", "Abhi"))

    Output:
    students: ['Amit shukla', 'prem', 'Radib', 'Abhi']

使用 list() 函数创建列表的 Python 代码

# python code to demonstrate example of
# list() method 

# creating list
students = list(("Amit shukla", "prem", "Radib", "Abhi"))

# printing type of list() function
print("type of list() function:", type(students))

# printing list...
print("students:", students)

输出

type of list() function: <class 'list'>
students: ['Amit shukla', 'prem', 'Radib', 'Abhi']


相关用法


注:本文由纯净天空筛选整理自 list() function with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。