Computer Science, asked by Anonymous, 9 months ago

Write the output of the given python code :
# !/user/bin/python
aList = [123, ‘xyz’, ‘zara’, ‘abc’];
aList.insert (3,2009) print “Final List:”, aList​

Answers

Answered by OnlyStudy21
0

Answer:

Are bar bar yahi question q post kar rhe ho xD xD

Have a mastikhur day xD⛄❤✌

Answered by ıtʑFᴇᴇʟɓᴇãᴛ
2

!/user/bin/python

aList = [123, ‘xyz’, ‘zara’, ‘abc’];

aList.insert (3,2009) print “Final List:”, aList

Answer:

Output:

Final List: [123, ‘xyz’, ‘zara’, 2009, ‘abc’]

Similar questions