Consider the following code:
a=[1,2,3]
a[1]=4
Answers
Answered by
1
Answer:
a=[1,4,3]
Explanation:
This code changes the 1 index of a (or the second index) to 4.
Similar questions