TheAlgorithms-Python/data_structures/Arrays.py

4 lines
46 B
Python
Raw Normal View History

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