Answers for "how to reverse a list in a function in pythob"

67

reverse list python

>>> the_list = [1,2,3]
>>> reversed_list = the_list.reverse()
>>> list(reversed_list)
[3,2,1]

OR

>>> the_list = [1,2,3]
>>> the_list[::-1]
[3,2,1]
Posted by: Guest on February-11-2020
0

print python reverse list

for i in range(len(collection)-1, -1, -1):
    print collection[i]

    # print(collection[i]) for python 3. +
Posted by: Guest on December-12-2021

Code answers related to "how to reverse a list in a function in pythob"

Python Answers by Framework

Browse Popular Code Answers by Language