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)

5 views

1 Answers

Output:

A List: abc B List: zara

5 views