Python Programming - Lists - Discussion

Discussion Forum : Lists - General Questions (Q.No. 7)
7.
How can you reverse the order of elements in a list in Python?
reverse()
list.reverse()
reversed(list)
list.reversed()
Answer: Option
Explanation:
The list.reverse() method is used to reverse the order of elements in a list in-place.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.