Python/data_structures/Arrays.py
2018-03-02 11:16:49 +05:30

4 lines
46 B
Python

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