欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python创建空列表

程序员文章站 2022-05-25 10:58:52
...

第一次写博客,请多多指教呀~

写一个函数创建一个空列表,参数为列表的大小,返回列表。

def new(size):
    newlist = []
    for i in range(0, size):
        newlist.append([])
    return newlist

在命令行中执行
python创建空列表

相关标签: python 函数