Python/data_structures/arrays.py

4 lines
82 B
Python
Raw Normal View History

2018-10-19 12:48:28 +00:00
arr = [10, 20, 30, 40]
arr[1] = 30 # set element 1 (20) of array to 30
2018-10-19 12:48:28 +00:00
print(arr)