Advertisements
Advertisements
Question
Find the output of the following code:
answer=[]; output=''
answer.append('T')
answer.append('A')
answer.append('M')
ch=answer.pop()
output=output+ch
ch=answer.pop()
output=output+ch
ch=answer.pop()
output=output+ch
print(“Result=”,output)
One Line Answer
Solution
Output - MAT
shaalaa.com
Is there an error in this question or solution?