Answers for "reverese list in python"

0

how to revert a list python

>>> array=[0,10,20,40]
>>> for i in reversed(array):
...     print(i)
Posted by: Guest on February-23-2020

Python Answers by Framework

Browse Popular Code Answers by Language