标签: python loops
如何在Python中创建动态列表。我正在尝试准备一个数组,其中值将被动态推入其中(使用循环)
答案 0 :(得分:11)
试试这个: 使用变量x进行初始化,并在循环内作为
x
x = [] n = 10 for i in range(1, n): x.append(i) # you push your element here, as of now I have push i print x
您可以在循环中将任何值附加为x.append(value)。
x.append(value)