Computer Science, asked by kanishkpro7, 7 months ago

Observe the below code snippet and choose the correct output:

l=[1,2,1]

l1=l.reverse()

if l==l1:

print(“Palindrome”)

print(l1)​

Answers

Answered by Anonymous
1

Answer:

Hi..

Explanation:

The output will be..

Palindrome

[1,2,1]

Hope it helps you

Please mark brainliest

^_^

Similar questions