Computer Science, asked by avradeepsaha674, 1 month ago

what is the output of the following: a=(10,35,60,70) a[2]=78 print (a)​

Answers

Answered by rajathpai2000
1

Answer:

[10, 35, 78, 70]

Explanation:

a = [10,35,60,70]

a[2] = 78

print(a)

Similar questions