Predict the output – (2)
L1=[1,3,5,7,9]
print(L1==L1.reverse())
print(L1)
Answers
Answered by
7
False
The reverse() method reverses the elements of the list.
Similar questions