How to implement reverse traversal by python
This article is to share with you about how python implements reverse traversal. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.
Reverse traversal
What should we do if we want to output the list from back to front?
Actually, all you have to do is add the reversed function:
Fruit = ["apple", "pear", "orange", "banana"] for iMagne x in enumerate (reversed (fruit)): print (iMagne x)
To output fruit elements in alphabetical order, use the sorted function:
Fruit = ["apple", "pear", "orange", "banana"] for iMagne x in enumerate (sorted (fruit)): print (iMagne x) Thank you for reading! This is the end of the article on "how to achieve reverse traversal in python". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!