因此,我试图创建 3 个不同的列表,其中一个是 1k,一个是 10k,另一个是 100k 项目中的一个,其中长满了从 1 到 1000 万的随机数,但我似乎无法弄清楚为什么它一直说它的语法无效。到目前为止,我有:
编辑:好的,它似乎已经通过一些调整解决了无效的语法问题,但仍然给了我:
Traceback (most recent call last):
File "C:/Python32/funtime.py", line 16, in <module>
print (list[1])
TypeError: 'type' object is not subscriptable
这正是我输入的内容:
import random
def createlist(a):
blist =[]
count=0
while count <= a:
blist.append(random.randint(1,10000000))
count= count+1
return blist;
list1= createlist(10000);
print (list[1])