mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 21:41:08 +00:00
4 lines
46 B
Python
4 lines
46 B
Python
arr = [10, 20, 30, 40]
|
|
arr[1] = 30
|
|
print(arr)
|