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']
相关用法
- 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 numpy.less()用法及代码示例
注:本文由纯净天空筛选整理自 list() function with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。