Python | for loop quiz | Question 5

Last Updated :
Discuss
Comments

How can you iterate over the elements of a list in reverse order using a for loop?

Using the reversed function

Using the reverse method

Using a negative step in the range function

Python doesn't support iterating in reverse order

Share your thoughts in the comments