Computer Science, asked by Imranmd8086, 10 months ago

Consider the following code:
a=[1,2,3]
a[1]=4

Answers

Answered by TheArkhamKnight
1

Answer:

a=[1,4,3]

Explanation:

This code changes the 1 index of a (or the second index) to 4.

Similar questions