w3resource

Python: Traverse a given list in reverse order, also print the elements with original index

Python List: Exercise - 195 with Solution

Write a Python program to traverse a given list in reverse order, and print the elements with the original index.

Visual Presentation:

Python List: Traverse a given list in reverse order, also print the elements with original index.

Sample Solution:

Python Code:

# Create a list called 'color' containing string elements.
color = ["red", "green", "white", "black"]

# Print a message indicating the original list of colors.
print("Original list:")
# Print the original 'color' list.
print(color)

# Print a message indicating the traversal of the list in reverse order.
print("\nTraverse the said list in reverse order:")

# Use the 'reversed' function to iterate over the 'color' list in reverse order.
# 'i' represents each color element in reverse order.
for i in reversed(color):
    # Print each color element.
    print(i)

# Print a message indicating the traversal of the list in reverse order with the original index.
print("\nTraverse the said list in reverse order with original index:")

# Use 'reversed' in conjunction with 'enumerate' to iterate over the 'color' list in reverse order.
# 'i' is the original index, and 'el' represents each color element in reverse order.
for i, el in reversed(list(enumerate(color))):
    # Print the original index and the corresponding color element.
    print(i, el) 

Sample Output:

Original list:
['red', 'green', 'white', 'black']

Traverse the said list in reverse order:
black
white
green
red

Traverse the said list in reverse order with original index:
3 black
2 white
1 green
0 red

Flowchart:

Flowchart: Traverse a given list in reverse order, also print the elements with original index.

Python Code Editor:

Previous: Write a Python program to sum two or more lists, the lengths of the lists may be different.
Next: Write a Python program to move a specified element in a given list.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/list/python-data-type-list-exercise-195.php