Creating an Array: Difference between revisions

Content added Content deleted
m (Reverted edits by XqyKre (Talk); changed back to last version by Ce)
(Added python)
Line 339: Line 339:
[qw(a b c d e f g)],
[qw(a b c d e f g)],
[qw(! $ %
[qw(! $ %

==[[Python]]==
[[Category:Python]]

my_empty_array = []
my_prefab_array = [1, 2, 3, 4, 5]
my_100_zero_array = [0 for i in range(100)]


==[[Toka]]==
==[[Toka]]==