Python/data_structures/arrays.py

4 lines
46 B
Python
Raw Normal View History

2018-10-19 12:48:28 +00:00
arr = [10, 20, 30, 40]
arr[1] = 30
print(arr)