Python reversed() function
reversed() method returns an iterator that accesses the given sequence in the reverse order.
Syntax :
reversed(sequ)
Parameters :
sequ : Sequence to be reversed.
Returns :
returns an iterator that accesses the given sequence in the reverse order.
CODE 1
# Python code to demonstrate working of # reversed() # For string seqString = 'geeks'print(list(reversed(seqString))) # For tuple seqTuple = ('g', 'e', 'e', 'k', 's') print(list(reversed(seqTuple))) # For range seqRange = range(1, 5) print(list(reversed(seqRange))) # For list seqList = [1, 2, 4, 3, 5] print(list(reversed(seqList))) |
chevron_right
filter_none
Output :
['s', 'k', 'e', 'e', 'g'] ['s', 'k', 'e', 'e', 'g'] [4, 3, 2, 1] [5, 3, 4, 2, 1]
CODE 2
vowels = ['a', 'e', 'i', 'o', 'u'] # Function to reverse the list def __reversed__(self): return reversed(self.vowels) # Main Function if __name__ == '__main__': print(list(reversed(vowels))) |
chevron_right
filter_none
Output :
['u', 'o', 'i', 'e', 'a']
Recommended Posts:
- Python | Reversed Split Strings
- ord() function in Python
- Python | dir() function
- Python | How to get function name ?
- Python | now() function
- Python | hex() function
- Help function in Python
- id() function in Python
- sum() function in Python
- Python | int() function
- Python | cmp() function
- Python | oct() function
- Python map() function
- Python | type() function
- join() function in Python
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



