About 3,380,000 results
Open links in new tab
  1. Python reversed() Method - GeeksforGeeks

    Mar 8, 2025 · reversed() function in Python lets us go through a sequence like a list, tuple or string in reverse order without making a new copy. Instead of storing the reversed sequence, it gives …

  2. Python reversed() Function - W3Schools

    Reverse the sequence of a list, and print each item: The reversed() function returns a reversed iterator object. Required. Any iterable object. The iter () function returns an iterator object. The …

  3. reversed () | Python’s Built-in Functions – Real Python

    The built-in reversed() function takes a sequence as an argument and returns an iterator that yields the elements in reverse order. The function does not modify the original iterable:

  4. Python reversed() - Programiz

    The reversed() function returns the reversed iterator of the given sequence. In this tutorial, we will learn about Python reversed() in detail with the help of examples.

  5. Python List reverse() Method - W3Schools

    Reverse the order of the fruit list: The reverse() method reverses the sorting order of the elements. No parameters. The built-in function reversed () returns a reversed iterator object. …

  6. What is Python reversed () function? - AskPython

    Jun 21, 2020 · Python reversed() function processes the input data values in reverse order. The reversed() function works with lists, string, etc. and returns an iterator by processing the …

  7. Mastering the `reversed` Function in Python - CodeRivers

    Jan 23, 2025 · The reversed function in Python is a built - in function that returns a reverse iterator for a given sequence. It takes an iterable object (such as a list, string, tuple, or range) as an …

  8. Python reversed () - Example And Explanation | Trytoprogram

    Python reversed() is built-in function that returns a reverse iterator of a given sequence. In simple words, this function when applied to a sequence returns an iterator that generates the …

  9. Python reversed() Builtin Function – Examples - Tutorial Kart

    Python reversed() builtin function takes a sequence and returns a new sequence with elements of the given sequence reversed. In this tutorial, we will learn about the syntax of Python …

  10. reversed() Builtin Function - Python Examples

    Python reversed() function takes a sequence as argument and returns a reversed iterator for the sequence. In this tutorial, you will learn the syntax of any() function, and then its usage with …

  11. Some results have been removed
Refresh