fork download
  1.  
  2. import random
  3.  
  4. def createlist(a):
  5.  
  6. blist =[]
  7. count= 0
  8. while count <= a:
  9. blist.append(random.randint(1,1000000))
  10. count=count+1
  11. return blist
  12.  
  13. list1= createlist(10000)
  14.  
  15. print list1[1]
  16.  
Success #stdin #stdout 0.12s 11000KB
stdin
Standard input is empty
stdout
452304