python创建空列表

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

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

在命令行中执行
python创建空列表_第1张图片

你可能感兴趣的:(python,python,函数)