About 145,000 results
Open links in new tab
  1. SORT Definition & Meaning - Merriam-Webster

    The meaning of SORT is a group set up on the basis of any characteristic in common : class, kind. How to use sort in a sentence. Synonym Discussion of Sort.

  2. 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 criteria (s).

  3. SORT | English meaning - Cambridge Dictionary

    SORT definition: 1. a group of things that are of the same type or that share similar qualities: 2. the type of…. Learn more.

  4. Array.prototype.sort () - JavaScript | MDN - MDN Web Docs

    Jul 20, 2025 · The sort() method of Array instances sorts the elements of an array in place and returns the reference to the same array, now sorted. The default sort order is ascending, built upon …

  5. std::list<T,Allocator>::sort - cppreference.com

    std::sort requires random access iterators and so cannot be used with list. This function also differs from std::sort in that it does not require the element type of the list to be swappable, preserves the values …

  6. Sort - definition of sort by The Free Dictionary

    1. To place or arrange according to class, kind, or size; classify: sorted the books into boxes by genre. See Synonyms at arrange. 2. To separate from others: sort the wheat from the chaff.

  7. Sorting Techniques — Python 3.14.4 documentation

    2 days ago · In this document, we explore the various techniques for sorting data using Python. A simple ascending sort is very easy: just call the sorted() function. It returns a new sorted list: You can also …

  8. SORT definition and meaning | Collins English Dictionary

    If you talk about a particular sort of something, you are talking about a class of things that have particular features in common and that belong to a larger group of related things.

  9. SORT Definition & Meaning | Dictionary.com

    As a verb, it means "organize, categorize, or resolve" like when you sort your earrings by size or your math teacher helps you sort out what went wrong on the latest test.

  10. 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 the original list in place, and does not return a new list.