how to reverse list in python
Answers
Answered by
0
HERE IS YOUR ANSWER
Reversing a list in-place with the list. reverse() method. Using the “ [::-1] ” list slicing trick to create a reversed copy. Creating a reverse iterator with the reversed() built-in function.
MARK ME AS BRAINLIEST IF IT HELPS
Similar questions