+1 vote
in Class 11 by kratos

Write the output of the given python code :

!/user/bin/python

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

print “A List:”, aList.pop()

print “B List:”, aList.pop(2)

1 Answer

+3 votes
by kratos
 
Best answer

Output:

A List: abc B List: zara

...