标签: python python-2.7
我想在Python函数中初始化特定数量的空列表;数字取决于函数的参数。我该如何实现呢?
答案 0 :(得分:1)
def my_function(n): x = [[] for num in range(n)] ...