Write the output of the given python code : # !/user/bin/python aList1 = [123, ‘xyz’, ‘zara’, ‘abc’]; print “A
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