Python/data_structures/Arrays.py

4 lines
46 B
Python
Raw Normal View History

2018-03-01 13:28:00 +00:00
arr = [10, 20, 30, 40]
arr[1] = 30
2018-03-02 05:46:05 +00:00
print(arr)