About 150,000 results
Open links in new tab
  1. Python max () Function - W3Schools

    The max() function returns the item with the highest value, or the item with the highest value in an iterable. If the values are strings, an alphabetically comparison is done.

  2. Python - max () function - GeeksforGeeks

    Jul 15, 2025 · Unlike the max () function of C/C++, the max () function in Python can take any type of object and return the largest among them. In the case of strings, it returns the …

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

    In this tutorial, you'll learn how to use Python's built-in min () and max () functions to find the smallest and largest values. You'll also learn how to modify their standard behavior by …

  4. The Python max () Method - AskPython

    Mar 28, 2020 · When two or more values are passed to the max() method, it returns the maximum or largest of them all. These arguments can be integers, floating-point values, characters or …

  5. How To Find The Maximum Value In Python Using The Max() …

    Jan 1, 2025 · Learn how to find the maximum value in Python using the `max ()` function. This tutorial covers its usage with lists, tuples, dictionaries, and more, with examples

  6. Python max Function - Complete Guide - ZetCode

    Apr 11, 2025 · This comprehensive guide explores Python's max function, which returns the largest item in an iterable or among arguments. We'll cover numbers, strings, custom objects, …

  7. Python max () - Programiz

    max () Return Value max() returns the largest argument among the multiple arguments passed to it.

  8. Python max () Function - Spark By Examples

    May 30, 2024 · In this article, I will explain the Python max() function and using its syntax, parameters, and usage how you can find the maximum element from a given list, tuples, sets, …

  9. Python max () function explained | ThinkInCode

    max() is a Python built-in function that returns the maximum value from a sequence, such as a list, tuple, or string. It can also handle multiple iterables, apply a custom key function, and provide …

  10. max — Python Function Reference

    A comprehensive guide to Python functions, with examples. Find out how the max function works in Python. Return the largest item in an iterable or the largest of two or more arguments.