Computer Science, asked by sarthakbhushan44, 2 months ago

What will the following code result in?
L1= [1,3,5,7,9]
print(L1==L1.reverse( ))
print(L1)​

Answers

Answered by sambhavgautam6
6

OUTPUT:-

FALSE

[9,7,5,3,1]

Similar questions