Je ne savais pas comment le déclarer comme un tableau de taille N en python.
http://www.i-programmer.info/programming/python/3942-arrays-in-python.html?start=1 La façon dont j'ai compris en lisant ce domaine.
try1
http://ideone.com/3oPLwu
test.py
mylist = [idx for idx in range(10)]
print mylist
résultat
Success time: 0.03 memory: 44680 signal:0
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Avec cela, 100 tableaux peuvent être initialisés pour le moment.
mylist = [0 for idx in range(10)]
improved
mylist = [0] * 10
Recommended Posts