Advertisements
Advertisements
Question
Find the output of the following code:
result=0
numberList=[10,20,30]
numberList.append(40)
result=result+numberList.pop()
result=result+numberList.pop()
print(“Result=”,result)
One Line Answer
Solution
Output = 70
shaalaa.com
Is there an error in this question or solution?