🌐
W3Schools
w3schools.com › python › ref_func_max.asp
Python max() Function
Python Examples Python Compiler ... Certificate Python Training ... The max() function returns the item with the highest value, or the item with the highest value in an iterable....
🌐
Python documentation
docs.python.org › 3 › library › functions.html
Built-in Functions — Python 3.14.3 documentation
1 month ago - Binary files are buffered in fixed-size chunks; the size of the buffer is max(min(blocksize, 8 MiB), DEFAULT_BUFFER_SIZE) when the device block size is available.
Discussions

Does Python have something similar to MAX_INT / std::numeric_limits<T>::max()} as in C++?
sys.maxsize is often used in place of sys.maxint in python 3. It means something different, but in almost every case would be the same number. More on reddit.com
🌐 r/learnpython
26
17
August 24, 2024
Question with max function
I am very new to python and just doing practice problems from an online textbook. I am kind of stuck on this question and why it gives me something that's wrong. It was meant to give the email of the person who has sent the most messages but using the "print(max(many))" actually gives me the ... More on reddit.com
🌐 r/learnpython
7
1
August 30, 2022
🌐
HowToDoInJava
howtodoinjava.com › home › python examples › python max() and min(): find max and min in array
Python max() and min(): Find max and min in Array
September 21, 2023 - Python provides two handy functions, max() and min(), that makes it easy to find the largest (or the smallest) item in any iterable (e.g.
🌐
Python Academy
python-academy.org › functions › max
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.
🌐
Python Tutorial
pythontutorial.net › home › python built-in functions › python max() function
Python max(): Return the Maximum Item
September 15, 2022 - In this tutorial, you'll learn how to use the Python max() function to return the maximum item of an iterable or maximum argument of two or more arguments.
Find elsewhere
🌐
Python Reference
python-reference.readthedocs.io › en › latest › docs › functions › max.html
max — Python Reference (The Right Way) 0.1 documentation
Returns the largest item in an iterable or the largest of two or more arguments · max (collection[, key])
🌐
Vultr Docs
docs.vultr.com › python › built-in › max
Python max() - Find Maximum Value | Vultr Docs
September 27, 2024 - The max() function in Python is a built-in utility that identifies the maximum value among the provided arguments or elements within an iterable.
🌐
Educative
educative.io › answers › what-is-max-in-python
What is max() in Python?
The max() method in Python returns the largest value from an iterable object.
🌐
GeeksforGeeks
geeksforgeeks.org › python › python-max-function
Python - max() function - GeeksforGeeks
July 15, 2025 - Python max() function returns the largest item in an iterable or the largest of two or more arguments.
🌐
Unstop
unstop.com › home › blog › python max() function | all use cases with code examples
Python max() Function | All Use Cases With Code Examples
February 12, 2025 - Python max() function helps find the largest value among multiple objects or iterable items. Use the optional parameters key & default to customize its behavior.
🌐
Tutorialspoint
tutorialspoint.com › python › list_max.htm
Python List max() Method
The Python List max() method compares the elements of the list and returns the maximum valued element. If the elements in the list are numbers, the comparison is done numerically; but if the list contains strings, the comparison is done
🌐
Career Karma
careerkarma.com › blog › python › python min and max: the ultimate guide
Python Min and Max: The Ultimate Guide | Career Karma
December 1, 2023 - The max() method then calculated which of these names comes last alphabetically and returned that name to the program. Finally, our code printed out a message that stated the name that appears last in the alphabet. Often, when you’re working with lists or strings, you’ll want to find the lowest or highest value that appears in that list or string. The Python min() and max() methods can be used to do so.
🌐
Real Python
realpython.com › ref › builtin-functions › max
max() | Python’s Built-in Functions – Real Python
The built-in max() function allows you to find the largest values in an iterable or among multiple arguments.
🌐
Learn By Example
learnbyexample.org › python-max-function
Python max() Function - Learn By Example
April 20, 2020 - The max() function can find the largest of two or more values (such as numbers, strings etc.) or the largest item in an iterable (such as list, tuple etc.)
🌐
Programiz
programiz.com › python-programming › methods › built-in › max
Python max()
max() returns the largest element from an iterable. ... If the items in an iterable are strings, the largest item (ordered alphabetically) is returned. languages = ["Python", "C Programming", "Java", "JavaScript"]
🌐
Reddit
reddit.com › r/learnpython › question with max function
r/learnpython on Reddit: Question with max function
August 30, 2022 - I am very new to python and just doing practice problems from an online textbook. I am kind of stuck on this question and why it gives me something that's wrong. It was meant to give the email of the person who has sent the most messages but using the "print(max(many))" actually gives me the 2nd person who messaged the most.