python how to reverse the order of a list code example
Example 1: how to revert a list python
>>> array=[0,10,20,40]
>>> for i in reversed(array):
... print(i)
Example 2: python reverse list
# Operating System List
systems = ['Windows', 'macOS', 'Linux']
print('Original List:', systems)
# Reversing a list
#Syntax: reversed_list = systems[start:stop:step]
reversed_list = systems[::-1]
# updated list
print('Updated List:', reversed_list)