python中list的函数的作用
时间: 2024-05-01 10:19:36 浏览: 130
详解python中list的使用
Python中list函数可以用来将可迭代的元素转换成列表,也可以创建一个空的列表。例如,使用list函数将字符串转换成列表,可以使用以下代码:
```
string = "hello"
list_string = list(string)
print(list_string)
```
输出为:
```
['h', 'e', 'l', 'l', 'o']
```
另外,list函数还可以接受一个参数,用来指定列表的初始值。例如:
```
numbers = list(range(5))
print(numbers)
```
输出为:
```
[0, 1, 2, 3, 4]
```
以上就是list函数的作用。
阅读全文