4 lines
46 B
Python
Raw Normal View History

2018-03-01 18:58:00 +05:30
arr = [10, 20, 30, 40]
arr[1] = 30
2018-03-02 11:16:05 +05:30
print(arr)