Python/data_structures/arrays.py
2018-10-19 07:48:28 -05:00

4 lines
46 B
Python

arr = [10, 20, 30, 40]
arr[1] = 30
print(arr)