About 6,890 results
Open links in new tab
  1. sort() in Python - GeeksforGeeks

    Jan 3, 2018 · The sort () method in Python is used to arrange the elements of a list in a specific order. It works only on lists, modifies …

  2. Python List sort() Method - GeeksforGeeks

    Dec 20, 2025 · The sort () method is used to arrange the elements of a list in a specific order, either ascending or descending. It …

  3. Sorting Techniques — Python 3.14.6 documentation

    1 day ago · In this document, we explore the various techniques for sorting data using Python. A simple ascending sort is very easy: …

  4. How to Sort Arrays and Lists in Python

    Jun 5, 2026 · Learn how to sort arrays and lists in Python using sort (), sorted (), custom key functions, reverse sorting, and real …

  5. Python List sort () Method - W3Schools

    Definition and Usage The sort () method sorts the list ascending by default. You can also make a function to decide the sorting …

  6. How to Use sorted() and .sort() in Python – Real Python

    Feb 24, 2025 · In this tutorial, you’ll learn how to sort various types of data in different data structures, customize the order, and work …

  7. Python Sorting: How to Sort Lists, Dictionaries, and Custom Objects

    May 8, 2026 · A complete guide to sorting in Python: sorted () vs .sort (), the key= parameter, sorting lists of dictionaries, sorting by …

  8. HowTo/Sorting - Python Software Foundation Wiki Server

    For example, to sort the student data by descending grade and then ascending age, do the age sort first and then sort again using …

  9. How to Sort a List in Python Using the sort () Method

    This tuorial shows you how to use the Python List sort () method to sort a list e.g. a list of numbers and a list of strings.

  10. How To Sort A String In Python?

    Jan 24, 2025 · Learn how to sort a string in Python alphabetically or by custom criteria using methods like sorted () and ''.join (). …