8 lines
74 B
Python
8 lines
74 B
Python
array = []
|
|
|
|
array.append(1)
|
|
array.append(3)
|
|
|
|
array[0] = 2
|
|
|
|
print array[0]
|