Answers for "function that prints all integers of a list, in reverse order num"

6

reverse element in a list in python 3

my_list = [1, 7, 9, 11, 12, 20]
# Reverse a list by using a slice
print(my_list[::-1])
Posted by: Guest on April-18-2020

Code answers related to "function that prints all integers of a list, in reverse order num"

Python Answers by Framework

Browse Popular Code Answers by Language