标签: python-3.x list int
我有代码输出累积的整数,所以我如何制作列表,我尝试了list(temp),但它说“类型为'int'的参数是不可迭代的”。
答案 0 :(得分:0)
您有很多选择。您可以创建一个空列表的变量。 然后,您可以使用.append(int)来扩展列表。
randlist = [] for someloop: code that generates x randlist.append(x)